Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 880 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 880 Bytes

About

Browser implementation of Conway's Game of Life using Rust and Webassembly (WASM).

Getting started

First make sure you have Rust, wasm-pack and NPM installed.

Cmpile the Rust source:

wasm-pack build

This will generate a pkg folder with the compiled Rust code that is used by the browser.

Install Javascript dependencies and run the webpack development server:

cd ./www
npm install
npm start

It should open a browser window with a running life instance.

🔋 Batteries Included