Hello. Will node.js support WebAssembly, or this is not possible? Or will full C++ engine with JS-like API? Or even Node.js will full binary program engine, that uses JS and C++ API? What will language?
node will support wasm as V8 supports it, although I believe V8 is still working on completing its implementation. It's an ongoing process at the moment.
In the meantime you can use --expose-wasm to play around with it. You can use the module builder in V8's tests to create usable bytecode, for example like this.
Most helpful comment
In the meantime you can use --expose-wasm to play around with it. You can use the module builder in V8's tests to create usable bytecode, for example like this.