The project is based on the official introductory tutorial wasm-game-of-life from Rust WebAssembly, with modifications.
The demo runs WebAssembly (wasm) in a web worker and performs off-screen rendering to prevent blocking the main thread.
- Utilizes WebAssembly and offscreen rendering in a worker for improved performance.
- Using pixi.js for WebGPU/WebGL rendering.
- Try using unocss for styling in small exercises.
To build the WebAssembly module, use the following command:
wasm-pack build --target web --reference-types --weak-refs
Next, navigate to the web directory, install dependencies, and run the demo:
cd web
pnpm install
pnpm run dev
This will launch the demo on http://localhost:5174/.
Note: Ensure that you have Node.js and pnpm installed on your machine.
Ensure that your browser supports OffscreenCanvas, WebGL, and wasm simd. The following browser versions are recommended:
- Chrome: >= 91
- Safari: >= 17
- Firefox: >= 105
Can I use: https://caniuse.com/offscreencanvas
webassembly roadmap: https://webassembly.org/roadmap/
The current performance of WebGPU implementation is not as good as WebGL, but it has potential for the future.