← All Workshops
MudEngine Part 1: Requirements
Step 6 / 19
Where does WASM sit in the browser?
The diagram below shows how Rust code flows through the toolchain into a WASM module and how that module lives inside the browser alongside the JavaScript engine, the DOM, and the rendering APIs.
🎯 Target triple breakdown
| Part | Value | Meaning |
|---|---|---|
| arch | wasm32 | 32-bit WebAssembly instruction set |
| vendor | unknown | No specific hardware vendor |
| os | unknown | No underlying OS — runs on WASM runtime directly |
Step 6 / 19