@ludw1gj/game-of-life
v0.9.4
Published
Conway's Game of Life using a HTML5 canvas and a 2D context.
Downloads
5
Maintainers
Readme
Conway's Game of Life
A TypeScript implementation of Conway's Game of Life using a HTMLCanvasElement.
Game rules are as follows:
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
Instructions
Install dependencies
npm install
Build the project:
npm run build
View index.html in browser.