Skip to content

John Conway's Game of Life written in TypeScript

Notifications You must be signed in to change notification settings

xljones/game-of-life

Repository files navigation

game-of-life

example workflow

John Conway's Game of Life written in TypeScript. See the live example here

Development

To run a development server deploying the project:

$ npm install
$ npm run serve

Build

To build the project into the ./dist direcetory:

$ npm install
$ npm run build

Push the changes to Git, then deploy to the GitHub pages branch with:

$ git subtree push --prefix dist origin gh-pages