An open API service indexing awesome lists of open source software.

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

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