https://github.com/xljones/game-of-life
John Conway's Game of Life written in TypeScript
https://github.com/xljones/game-of-life
game game-of-life gameoflife javascript john-conway john-conway-game john-conway-s-game-of-life js ts typescript
Last synced: 9 months ago
JSON representation
John Conway's Game of Life written in TypeScript
- Host: GitHub
- URL: https://github.com/xljones/game-of-life
- Owner: xljones
- Created: 2020-04-14T12:42:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T09:07:13.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T04:13:32.062Z (10 months ago)
- Topics: game, game-of-life, gameoflife, javascript, john-conway, john-conway-game, john-conway-s-game-of-life, js, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 585 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game-of-life

John Conway's Game of Life written in TypeScript. [See the live example here](https://xljones.github.io/game-of-life/)
## Development
To run a development server deploying the project:
```sh
$ npm install
$ npm run serve
```
## Build
To build the project into the `./dist` direcetory:
```sh
$ npm install
$ npm run build
```
Push the changes to Git, then deploy to the GitHub pages branch with:
```sh
$ git subtree push --prefix dist origin gh-pages
```