We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Instead of calling _start, _initialize should be used per https://nodejs.org/api/wasi.html#wasiinitializeinstance.
_start
_initialize
An example is to support Haskell Wasm Reactor Module:
// initialize Haskell Wasm Reactor Module wasi.inst = inst; inst.exports._initialize(); inst.exports.hs_init(0, 0);
Full example: https://github.com/hellwolf/haskell-examples/blob/master/2023-02-24-wasm-comm/client.js
What is your recommendation?
The text was updated successfully, but these errors were encountered:
Does #17 work?
Sorry, something went wrong.
Yep!
Successfully merging a pull request may close this issue.
Instead of calling
_start
,_initialize
should be used per https://nodejs.org/api/wasi.html#wasiinitializeinstance.An example is to support Haskell Wasm Reactor Module:
Full example: https://github.com/hellwolf/haskell-examples/blob/master/2023-02-24-wasm-comm/client.js
What is your recommendation?
The text was updated successfully, but these errors were encountered: