An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# game-of-life

![example workflow](https://github.com/xljones/game-of-life/actions/workflows/.github/workflows/webpack.yml/badge.svg)

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
```