Wasm Playground
Coming Soon
We're building a full in-browser playground where you can write Rust, compile to WebAssembly, and run it — all client-side.
Code Editor
Full editor with Rust syntax highlighting
Wasm Compilation
Compile Rust → Wasm on our server
Run in Browser
Execute compiled Wasm instantly in your browser
In the meantime, learn with our lesson code editors or compile locally with wasm-pack.
Try locally right now
# Install cargo install wasm-pack # Create project cargo new --lib my-wasm-app cd my-wasm-app # Build wasm-pack build --target web