com.eclipsesource.NodeExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j2v8_win32_x86 Show documentation
Show all versions of j2v8_win32_x86 Show documentation
J2V8 is a set of Java bindings for V8
package com.eclipsesource;
import com.eclipsesource.v8.V8;
public class NodeExample {
public static void main(final String[] args) {
V8 v8 = V8.createV8Runtime();
String result = v8.executeStringScript("'🎉'");
System.out.println(result);
}
}