Skip to content

🦠 A simple web app to see how Svelte, SvelteKit and Server Side Rendering work.

Notifications You must be signed in to change notification settings

loonkwil/game-of-life

Repository files navigation

Game of Life

Preview of the game

https://game-of-life-alpha-three.vercel.app/

This is a simple web app to play with Svelte, SvelteKit, Server Side Rendering, bitboard, BitInt, various ARIA roles, and the roving tabindex technique.

About the Game

It is a mathematical simulation played on a grid of cells, where each cell can be alive or dead. The game evolves over generations based on simple rules: cells with too few or too many live neighbors die, and dead cells with exactly three live neighbors come to life. This leads to the emergence of various interesting patterns, making it a fascinating and widely studied cellular automaton.