es4x
es4x copied to clipboard
🚀 fast JavaScript 4 Eclipse Vert.x
Hi, First of all - "Amazing work". This framework is amazing good job. I have one question: have you tried to wrap/ emulate (like game emulators are doing) the behavior...
```shell $ es4x versions VM: OpenJDK 64-Bit Server VM - 17 VM Vendor: null Vert.x: 4.2.2 ES4X: 0.16.2 graaljs: 21.3.0 ``` code: index.js ```javascript import { Promise as VPromise }...
```Unhandled exception caused by java.lang.IllegalStateException: Multi threaded access requested by thread Thread[vert.x-eventloop-thread-1,5,main] but is not allowed for language(s) js. at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotEngineException.illegalState(PolyglotEngineException.java:129) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.throwDeniedThreadAccess(PolyglotContextImpl.java:940) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.checkAllThreadAccesses(PolyglotContextImpl.java:799) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.enterThreadChanged(PolyglotContextImpl.java:629) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotEngineImpl.enterCached(PolyglotEngineImpl.java:1885) at...
What are the limitations of es4x, if any, in regards to compatibility with both node.js/npm and Vert.x? In other words, can I do everything with es4x that can be done...
This is somewhat related to #223. I'm currently trying to include some js verticles into a bigger java project. As a minimal example I have a helloVert.js : ``` vertx.eventbus().consumer("hello.vertx",...
I'd like to start with ES4X, so I tried to debug Hello World example following steps on https://reactiverse.io/es4x/get-started/debug.html#debug. It looks like doc is outdated and does not help user to...
Been a while since I tried es4x, so I went right to the Hello World example. Doesn't seem to work. ``` es4x hello-es4x.js Installing JVMCI Compiler... Installing GraalJS... Missing node_modules/.bin/es4x-launcher.jar...
Hello, I have a vertx application (java) where I would like to use d3.js to generate server side svg charts. I think that polyglot programming makes most sense if one...
Is it possible that the Binding for the io.vertx.json.schema.draft7.dsl.Schemas class is still missing? I can't call objectSchema() or intSchema() and so on...
sorry, my english is not good. i want to try to package js files with webpack, just like fat jar in java. in this way, we can not rely on...