8000 GitHub - xljones/game-of-life: John Conway's Game of Life written in TypeScript
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

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
0