A fun two-player cooperative web game inspired by the board game "La Marche Du Crabe".
The game consists of:
- A Next.js web app that renders the frontend.
- A Websocket server that manages room creation for game sessions, game progress and player communications.
- Install dependencies
pnpm i. - Run the Websocket server
pnpm ws-startso that players can communicate with each other within a room. - Run the development server
pnpm dev. - Open http://localhost:3000 with your browser to open the game.
The following commands are available once you install Node.js & pnpm:
pnpm i- Installs the project's dependencies.pnpm dev- Runs the development server.pnpm build- Builds the project for production.pnpm compile- Checks if the project can be compiled correctly.pnpm lint- Checks for linter errors.pnpm ws-build- Builds the Websocket server.pnpm ws-start- Runs the Websocket server.