Conway's game of life implemented with rust and wasm
To build the project you need to have wasm-pack
in your machine and then run this command in terminal
wasm-pack build
You also need to install some node packages so inside the web folder run this command
npm install
To finally build the project run the following command in the web folder
npm run build
Considering you made your wasm package and installing the node modules, run the following command in the web folder
npm run serve
To test the program run the following command
wasm-pack test --firefox --headless
you can use --chrome
--safari
in place of --firefox