The Game of Life is not your typical computer game. It is a cellular automaton, and was invented by Cambridge mathematician John Conway. This game became widely known when it was mentioned in an article published by Scientific American in 1970. It consists of a grid of cells which, based on a few mathematical rules, can live, die or multiply. Depending on the initial conditions, the cells form various patterns throughout the course of the game.
You can define your own rule, for example 23/3 where the numbers on the left to the "/" define how many alive neighburs an alive cell need to have to stay alive, on the other hand, number on the right specify how many alive neighburs a dead cell need to become alive.
After cloning the repository run npm start and open a given link in your browser. You're done! Now you can edit everthing in src/ directory.