J2V8 icon indicating copy to clipboard operation
J2V8 copied to clipboard

Java Bindings for V8

Results 101 J2V8 issues
Sort by recently updated
recently updated
newest added

Github Actions could potentially be used to build J2V8 for the macOS and Windows target platforms. This is a description of the available build environments: https://help.github.com/en/articles/virtual-environments-for-github-actions#supported-virtual-environments-and-hardware-resources Branch [v8-7.4.288-build](/eclipsesource/j2v8/tree/v8-7.4.288-build) contains the...

enhancement
community

@irbull We have integrated J2V8 into our project, we're very appreciate that you provide so excellent framework for us. But now we're facing one problem that is how to debug...

It used to work on android version 4 but I just updated and now I get : cannot locate symbol "sigemptyset" referenced by "libj2v8.so"

@irbull I found V8DebugServer class in j2v8 latest project, I try to use it but can't debug javascript with chrome browser yet. My code like following. I also ask the...

I try to use V8DebugServer but it can't work well with chrome. when chrome Discover network targets my V8DebugServer throw a java.net.SocketException like this: ```java java.net.SocketException: Software caused connection abort:...

I want to return a lang value in a java funtion,what can i do fun getRandomValues():Long{ val sercurirandom = SecureRandom() val bytes = ByteArray(4) sercurirandom.nextBytes(bytes) val results = bytes.getUIntAt(0) return...

Hi, It is very easy to write a small script that will go OOM in the JS layer, causing the JVM to crash. For instance the following script : ```javascript...

good first issue

Not sure how feasible this is, but I'd like to be able to replace the FS and HTTP modules with my own implementations such that I can get it to...

There appears to be no simple, easy way to invoke the JavaScript "new Xxx(arg1, arg2, ...)" from Java. Am I missing something here? Currently I'm introducing factory functions like "var...