1.Cd in the project folder
2.Set the node version:
nvm use 18
3.Install dependencies:
npm install
4.Start the app:
npm start
- Seed the table by pressing the seed button
- Start/pause the game by pressing the start/pause button
- End/clear the game by pressing the clear button
The universe of the Game of Life is an infinite, two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, alive or dead, (or populated and unpopulated, respectively). Every cell interacts with its eight neighbors, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur: • Any live cell with two or three neighbors survives. • Any dead cell with three live neighbors becomes a live cell. • All other live cells die in the next generation. Similarly, all other dead cells stay dead.