Feedbacks

Tabris.js 1.9 is here

Aug 3, 2016

The long-awaited imageData support is here, together with new lifecycle events, enhancements to WebView handling, and much more. In addition, Tabris.js now has a public playground! Read on for more …

Improved Memory Management with J2V8

Ian Bull
Jul 29, 2016

Memory management in J2V8 has never been easy. Because J2V8 bridges V8 and Java, three different memory models are in play. Both Java and JavaScript provide a managed memory model with their own GC. …

Java Methods as JSFunctions

Ian Bull
Jul 27, 2016

When J2V8 was first released, all callbacks from JavaScript to Java required a registered Java method. That is, all Java methods that you wished to invoke had to be first registered with J2V8. For …

EclipseCon video: Node.js in a Java World

Ian Bull
Jul 26, 2016

Last week I finally published the Node.js bindings for Java. These bindings allow developers to embed the Node.js runtime directly onto the JVM through the Java Native Interface. In March I gave a …

J2V8 Supports 16bit Characters

Ian Bull
Jul 26, 2016

When J2V8 was first released, all Java characters passed between Java and V8 were converted to 8bit C-Style strings. For many applications this was just fine, but if your JavaScript contained 16 bit …

TypedArrays -- Sharing Memory Between V8 and Java

Ian Bull
Jul 25, 2016

J2V8 provides the technology to link V8 and Node.js with the JVM. Using JNI, Java developers can directly call V8 and Node.js APIs. This seamless integration brings improved JavaScript performance, …