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

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

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
```

![Example result](./img/example.png)

## Credits

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