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
Rust has a very fast WebAssembly runtime wasmtime, its speed is close to v8's WebAssembly
However, wasmtime will significantly increase the program size. If our program size reaches 40mb, then it seems that using v8 will be a better choice.
The text was updated successfully, but these errors were encountered:
Hi @ahaoboy, that's true! We have no current plans supporting WASM. If we add this in the future, it will be a lightweight WASM runtime such as https://github.com/bytecodealliance/wasm-micro-runtime
Sorry, something went wrong.
WAMR is much smaller than wasmtime and is indeed more suitable for llrt.
I would also consider https://github.com/wasmi-labs/wasmi
wasmi does not support simd, which may limit some image processing libraries txiki.js may also use WAMR (I guess) saghul/txiki.js#629 (comment)
No branches or pull requests
Rust has a very fast WebAssembly runtime wasmtime, its speed is close to v8's WebAssembly
However, wasmtime will significantly increase the program size. If our program size reaches 40mb, then it seems that using v8 will be a better choice.
The text was updated successfully, but these errors were encountered: