jessevdp / game-of-life

Conway's Game of Life in Javascript.

Home Page:https://gol.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Conway's Game of Life in Javascript.

https://gol.js.org

License:Other


Languages

Language:JavaScript 89.2%Language:CSS 6.2%Language:HTML 4.5%