CraftJS
NOTE: Under heavy development
Spigot Plugin that allows programming custom functionality for your server using Javascript. Inspired heavily by Scriptcraft but trying to address some of it's issues.
Core Javascript code is available here
Getting Started
Download the plugin jar from releases or build the code directly from source.
Building from source
- Make sure you have
maven
installed - Download and install Graal Java runtime and make sure it's configured as your default Java (executing
java --version
should sayOpenJDK Runtime Environment GraalVM
) - Run
mvn install
- Copy the built jar from
target
to your server's plugins-folder
Differences to Scriptcraft
CraftJS and Scriptcraft are both essentially just a Javascript engine wrapped into a Spigot plugin. Scriptcraft uses now deprecated Nashorn -engine, while CraftJS uses Graal. This allows the executing code to use more recent (ES6+) Javascript features without using transpilers (like Babel), and should also allow for much better performance.