Rust WASM-based game-of-life
https://life.sarsoo.xyz
23fb02fe7e
Bumps [webpack](https://github.com/webpack/webpack) from 5.71.0 to 5.76.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.71.0...v5.76.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github/workflows | ||
src | ||
tests | ||
www | ||
.gitignore | ||
Cargo.toml | ||
CNAME | ||
README.md |
Game of Life
Try it Out!
WASM-based game of life following the Rust WASM book tutorial.
Rust WASM module for game logic with a JS frontend for rendering and processing user input.
Building
- Setup a Rust + wasm-pack environment and a Node environment
- Build the Rust library into a WASM module
wasm-pack build
- Move to the Js workspace
cd www
- Install the Js dependencies
npm install
- Build the Js frontend with Rust WASM module
npm run build