Replies: 2 comments
-
This is not possible with a normal wasmer binary. One reason is that wasmer comiles WASM binaries to native host CPU instructions. WASM offers no way of executing those compiled instructions in an instance's memory for obvious security reasons. Possible alternatives:
|
Beta Was this translation helpful? Give feedback.
-
One small nit: Wasmer (Rust API) currently can run in other VM: the Javascript VM since Wasmer is fully compilable to JS via wasm-bindgen. But this is a trick of API translation rather than pushing into memory the compiled code. As @jcaesar commented are two ways that Wasmer can run in other VMs:
|
Beta Was this translation helpful? Give feedback.
-
Summary
Can Wasmer run in Wasm? I'm developing a server app which would use webassembly for plugins, but the app itself could, eventually, be ran on wasm itself. Is this possible?
Beta Was this translation helpful? Give feedback.
All reactions