Skip to content
This repository has been archived by the owner on May 9, 2021. It is now read-only.

jessevdp/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoL

Conway's Game of Life in Javascript.

See it in action at https://gol.js.org

Features

  • Paint your own start position or let the game generate a random one.
  • Responsive Grid size.
  • Resizable grid.
  • Share your game with your friends.

Game Rules

  • Any live cell with fewer than two live neighbours dies (referred to as underpopulation or exposure).
  • Any live cell with more than three live neighbours dies (referred to as overpopulation or overcrowding).
  • Any live cell with two or three live neighbours lives, unchanged, to the next generation.
  • Any dead cell with exactly three live neighbours will come to life.

License

This project is licensed under the MIT License. You can read the full license here.

Releases

No releases published

Packages

No packages published