Can WASM access the DOM without any JavaScript?
In the WebAssembly Minimal Viable Product the only way to call into and out of WebAssembly is through imports and exports. In the future, WebAssembly may gain capabilities which allow the embedder expose APIs directly, in a browser embedding this could include the DOM. Imports and exports aren’t very complicated though: from your C code’s … Read more