Skip to content

kovalenkovpu/life-game

Repository files navigation

Conway's Game of Life

Wiki

Rules

  • Any live cell with two or three live neighbours survives;
  • Any dead cell with three live neighbours becomes a live cell;
  • All other live cells die in the next generation. Similarly, all other dead cells stay dead.

Run game

  • yarn start for running the application on localhost:3000;
  • yarn run build for building the applcation into dist folder.

TODO:

  • New data model - LG01
  • Performance on current solution - LG01
  • Code style
  • Move function approach to class-based MVC - LG02
  • TS support - LG03
  • Move to canvas solution
  • Production config