使用 jvm-npm 解决 graalvm js common js 模块加载问题
jvm-npm 是一个很不错的js hack,可以方便的用来解决 java js 引擎的 的npm 问题,以下是一个使用说明
代码说明
- 项目结构
- 使用代码
init 主要是npm common 机制的hack
public static void init(Engine engine,Context context) throws IOException {
Source mysource = Source.newBuilder("js","load(\"src/main/resources/jvm-npm.js\");","demoapp").build();
context.eval(mysource);
}
调用npm 包
public static void global(Engine engine,Context context) throws IOException {
Source mysource = Source.newBuilder("js","var demoapp = require(\"src/main/resources/mydemo\")","demoapp").build();
context.eval(mysource);
Value callapp = context.getBindings("js").getMember("demoapp");
Value result = callapp.execute("dalong",333);
System.out.println(result.asString());
}
mydemo.js
function demoapp(name,age) {
return `${name}-----${age}`
}
module.exports = demoapp
- 说明
为了方便,复用了engine 以及context 这样可以复用一些公用部分(比如npm 机制)
Engine engine = Engine.newBuilder().option("js.load-from-url","true").allowExperimentalOptions(true).build();
Context context = Context.newBuilder().allowAllAccess(true).engine(engine).build();
运行效果
说明
以上是一个简单的集成试用,context 共享会有点不安全,实际推荐的还是基于线程隔离,engine 我们可以共享,实现一些编译优化