Wasmtime
Rust製の
WebAssemblyランタイム
WebAssembly 仮想マシン?
Bytecode Alliance製
GitHub:
bytecodealliance/wasmtime: A fast and secure runtime for WebAssembly
code:memo
# CLIのインストール
curl
https://wasmtime.dev/install.sh
-sSf | bash
code:hello.rs
fn main() {
println!("Hello, world!");
}
code:memo
$ rustup target add wasm32-wasi
$ rustc hello.rs --target wasm32-wasi
$ wasmtime hello.wasm
Hello, world!
Cranelift
WebAssemblyランタイム「Wasmtime」がバージョン1.0に到達、本番利用に対応。Bytecode Allianceによる事実上の参照実装 - Publickey
Bytecode Alliance — Wasmtime and Cranelift in 2023
#WebAssembly
#WebAssemblyランタイム