Skip to content

shrutsureja/Maze-Game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 

Repository files navigation

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
  1. Start the front development server.
cd frontend
npm run dev