https://github.com/vfk/gameoflife-es6
Conway's Game of Life written in ECMAScript 6
https://github.com/vfk/gameoflife-es6
Last synced: over 1 year ago
JSON representation
Conway's Game of Life written in ECMAScript 6
- Host: GitHub
- URL: https://github.com/vfk/gameoflife-es6
- Owner: VFK
- Created: 2015-02-11T18:24:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-01T07:53:47.000Z (about 11 years ago)
- Last Synced: 2024-12-24T15:18:06.813Z (over 1 year ago)
- Language: JavaScript
- Size: 185 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# GameOfLife-ES6 [](https://travis-ci.org/VFK/GameOfLife-ES6)
> [Conway's Game of Life](http://en.wikipedia.org/wiki/Conway's_Game_of_Life) written in ECMAScript 6.
#### 1. Install
```shell
git clone https://github.com/VFK/GameOfLife-ES6.git
cd GameOfLife-ES6
npm i
```
#### 2. Run
If the future is finally here (if ECMAScript 6 is fully supported now):
```shell
node index.js
```
If there are still no flying cars and hover boards (use [Babel](http://babeljs.io) runner):
```shell
npm run main
```
#### 3. Run on browser
Adapted to work in the browser
```shell
npm run babel
npm start
```
## Credit
[VFK](https://github.com/VFK/GameOfLife-ES6)
## Modified
| [](http://lagden.in) |
| :-----------: |
| [Thiago Lagden](http://lagden.in) (Modified) |