JSEngine icon

JSEngine -----

Wrapper for Nashorn JavaScript engine




made java 8 compatible
----------, Oct 4, 2024

just recompiled with 1.20.2.
----------, Oct 17, 2023

built with 1.19.4
----------, May 14, 2023

changed the plugin name back to JSEngine
----------, Feb 27, 2023

including 1.19.3 support.
----------, Feb 27, 2023

built with 1.18.1
----------, Dec 23, 2021

Built against Spigot 1.18
----------, Dec 3, 2021

built with java 17 support.
----------, Sep 14, 2021

built against 1.17
----------, Jun 15, 2021

Code (Text):

# if this option is true, even if ScriptEngineManager already has a factory
# for JavaScript, this plugin will try to replace it with openjdk nashorn.
ForceNashorn: false
 
If this option is set to "true", you won't see the warning message from your java about Nashorn is going to be removed in the future java.
----------, May 29, 2021

added a sanity check to see whether the JavaScript engine exists or not.
----------, May 29, 2021

change the order of initialisation.
----------, May 27, 2021

You can access JS engine in three different ways;

1) use JSEngine.jar as a library
Code (Text):

import com.vk2gpz.jsengine.JSEngine;
...
public class Foo {
    void bar() {
        ScriptEngine engine = JSEngine.getNewEngine();
        try {
            engine.eval("your script");
        } catch (javax.script.ScriptException ex) {
            ex.printStackTrace();
        }
...
}
 
2) use JSEngine as a plugin
Code (Text):

Plugin plugin = Bukkit.getPluginManager().getPlugin("JSEngine");
if (plugin != null) {
   engine = (ScriptEngine) ((JSEngine) plugin).getSharedEngine();
   //engine = (ScriptEngine) ((JSEngine) plugin).getNewEngine();
}
...
if (engine != null) {
   try {
       engine.eval("...you script");
   } catch (javax.script.ScriptException ex) {
       ex.printStackTrace();
   }
}
 
3) use JSEngine through Bukkit's ServicesManager
Code (Text):

ServicesManager servicesManager = Bukkit.getServer().getServicesManager().getRegistration(ScriptEngineManager.class);
ScriptEngineManager scriptEngineManager = servicesManager.getProvider();
ScriptEngine engine = scriptEngineManager.getEngineByName("js");
try {
    engine.eval("your script");
} catch (javax.script.ScriptException ex) {
    ex.printStackTrace();
}
 
----------, May 27, 2021

included license files for openjdk, ow2 resources.
----------, May 27, 2021

removed the duplicated code.
----------, May 26, 2021

added the missing classes.
----------, May 26, 2021

getSharedEngine will return a shared (static) engine,
getNewEngine will return a new instance.
----------, May 26, 2021

Resource Information
Author:
----------
Total Downloads: 5,775
First Release: May 26, 2021
Last Update: Oct 4, 2024
Category: ---------------
All-Time Rating:
7 ratings
Find more info at discord.gg...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings