shrutsureja / Maze-Game

A single player Maze Game made with MERN
https://maze-game-teal.vercel.app
0 stars 1 forks source link
cloudflare-workers game maze maze-game maze-generator nodejs reactjs typescript vercel-deployment

Maze Game

A Maze Game web application, you can play individually and against your friends. And also visualize how the maze is generated with Hunt and Kill algorithm and solved with backtracking.

Building this project with React + Typescript + Vite.

Happy for more contributors to join.

Environment Setup

1.Clone the repository:

  git clone https://github.com/your-username/Maze-Game.git

2.Install dependencies:

  cd Maze-Game
  cd backend
  npm install
  cd ../frontend
  npm install
  1. Start the backend development server.

    cd backend
    npm run dev
  2. Start the front development server.

    cd frontend
    npm run dev