Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 775 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 775 Bytes

Conway's Game of Life

Exploring WebAssembly by building Conway's Game of Life.

🚴 Usage

  1. Install wasm-pack if not installed already.
cargo install wasm-pack
  1. Use wasm-pack to compile wasm and generate JS bindings
# ./$CARGO_ROOT
wasm-pack build
  1. Install npm dependencies (from ./www directory)
# ./$CARGO_ROOT/www
npm i
  1. Start the dev server
# ./$CARGO_ROOT/www
npm run start