https://github.com/sansx/game-of-life
http://78.141.208.18
https://github.com/sansx/game-of-life
game-of-life rust wasm-pack
Last synced: about 1 month ago
JSON representation
http://78.141.208.18
- Host: GitHub
- URL: https://github.com/sansx/game-of-life
- Owner: sansx
- License: apache-2.0
- Created: 2020-05-31T15:20:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T16:27:32.000Z (over 2 years ago)
- Last Synced: 2025-09-08T20:39:49.054Z (about 1 month ago)
- Topics: game-of-life, rust, wasm-pack
- Language: Rust
- Homepage:
- Size: 4.68 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
wasm_game_of_life
Conway's Game of Life in Rust and WebAssembly
### About
This repository is made base on [Tutorial: Conway's Game of Life](https://rustwasm.github.io/book/game-of-life/introduction.html), the tutorial builds increasingly featureful implementations of [Conway's Game of Life][game-of-life].
## 🚴 Usage
### 🛠️ Install `wasm-pack`
check the website to get [`wasm-pack`](https://rustwasm.github.io/wasm-pack/installer/)### 🛠️ Build with `wasm-pack build`
```
wasm-pack build
```
### Go to www dir and install frontend dependents with npm
```
cd www && npm i
```### Running server
```
npm run start
```### [Read the tutorial here!][tutorial]
[game-of-life]: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
[tutorial]: https://rustwasm.github.io/book/game-of-life/introduction.html