an endless, massive multiplayer minesweeper game built with Next.js, Socket.IO, and Redis.
requires Node.js 24.18.0, npm, and either Redis or Docker.
npm ci
cp .env.sample .env.localreplace REDIS_URL in .env.local with:
REDIS_URL=redis://localhost:6379start Redis directly:
redis-server --save '' --appendonly noor with Docker:
docker run --rm -p 6379:6379 redis:7-alpinein another terminal, start the app:
npm run devopen http://localhost:3000.