-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imports #596
Comments
Javy at the present time does not support resolving imports from files in your file system. The short story for why is, during compilation, we process the JS source code inside a WebAssembly instance and that instance does not have any access to your filesystem. You can use a bundler like Something else to keep in mind is Javy does not support NodeJS or CommonJS APIs. So something like Express or Mongoose will likely either fail to compile or fail to run. An additional wrinkle is because Javy produces WASI preview 1 Wasm modules, many I/O operations including ones involving sockets for HTTP or database connections are not supported because there are not standard WASI APIs available for those operations in WASI preview 1. |
That was comprehensive, thanks. May I ask -
Thanks for the Vite hint. It's a shame NodeJS APIs aren't working. |
It's out of scope for Javy. As a codebase, it's pretty tightly coupled to QuickJS as an engine. I'm not sure how much of Javy's codebase would be helpful to reuse between engines. I suspect for different engines or for no engine at all, it would make more sense to author that code outside of Javy.
Sorry I'm not exactly following on what the question is 🙂 |
One more thing - There is JSLinux by Fabrice Bellard. It has no NodeJS calls, requires no libraries, and is pure Javascript. Do you think? |
Looking at the JS part of the code, it looks like it requires APIs to instantiate a Wasm module, XML HTTP Request API support, and document object model (DOM) APIs. Supporting these APIs would require the use of non-WASI imported Wasm functions. |
Thanks for your valuable feedback. |
Just gone through the process and got a few to work, FWIW: https://github.com/andreaTP/javy-bundling-examples |
Hello. I'm trying to compile a multi-file structured NodeJS project with several (npm) imports such as ExpressJS and Mongoose.
It doesn't particularly like it.
Good job with JS to WASM, although!
The text was updated successfully, but these errors were encountered: