https://github.com/alexanderad/conways-game-of-life
Conway's Game of Life implementation in Node.js + D3.js
https://github.com/alexanderad/conways-game-of-life
conway-game d3js javascript life pegjs run-length-encoding
Last synced: about 1 month ago
JSON representation
Conway's Game of Life implementation in Node.js + D3.js
- Host: GitHub
- URL: https://github.com/alexanderad/conways-game-of-life
- Owner: alexanderad
- License: mit
- Created: 2014-12-28T06:50:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-01-06T11:36:50.000Z (over 6 years ago)
- Last Synced: 2025-03-27T23:11:33.159Z (about 2 months ago)
- Topics: conway-game, d3js, javascript, life, pegjs, run-length-encoding
- Language: JavaScript
- Homepage: https://conwayslife.darednaxella.name/
- Size: 314 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Conway's Game of Life on Node.js + D3.js
This is yet another implementation of [Conway's Game of Life](http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). Here I'm trying to learn something new from a wide frontend horizon.
## Run
1. Checkout and install dependencies:
```shell
$ git clone https://github.com/alexanderad/conways-game-of-life.git
$ cd conways-game-of-life
$ npm install
$ node app.js
```2. Navigate to [http://localhost:3000](http://localhost:3000)
## Developer's mode
```shell
$ npm install -g supervisor
$ supervisor app.js
```## Bookmarks
- [D3.js](http://d3js.org)
- [D3.js: Thinking with Joins](http://bost.ocks.org/mike/join/)