https://github.com/pyaillet/rust-wasm-gol
A Conway's Game of Life implementation in Rust & WASM
https://github.com/pyaillet/rust-wasm-gol
Last synced: over 1 year ago
JSON representation
A Conway's Game of Life implementation in Rust & WASM
- Host: GitHub
- URL: https://github.com/pyaillet/rust-wasm-gol
- Owner: pyaillet
- License: apache-2.0
- Created: 2021-11-02T23:39:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-11T10:22:51.000Z (over 4 years ago)
- Last Synced: 2025-02-04T19:14:33.631Z (over 1 year ago)
- Language: Rust
- Size: 98.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
# Rust Wasm Game of Life
This repo contains an example implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) in Rust and WebAssembly.
## How to use
You should have [wasm-pack](https://github.com/rustwasm/wasm-pack) installed.
```sh
cargo install wasm-pack
wasm-pack build
cd www
npm start
```

## Credits
Many thanks to the creators of [wasm-pack-template](https://github.com/rustwasm/wasm-pack-template)