javapoly-test
v0.0.20160513191312
Published
JavaPoly.js is a library that polyfills native JVM support. It allows you to import Java code and invoke the code directly from Javascript, even if the user doesn't have Java installed on their computer.
Downloads
3
Readme
var JavaPoly = require('javapoly');
JavaPoly.addClass('/path/to/MyClass.java');
JavaPoly.addClass('/path/to/MyClass2.class');
JavaPoly.type('MyClass').then(function(MyClass){MyClass.doSomething();});
JavaPoly.type('MyClass2').then(function(MyClass2){MyClass2.doSomething();});
JavaPoly will work in nodejs and/or in the web browser, even if the user doesn't have Java installed!
For more details: https://www.javapoly.com