A fast-paced modern twist to sudoku, where you must beat everyone else at their own game, while dealing with random chance
Note : This repository is one of the challenges made for the event "ForkThis" organized by the chapter Computer Society of India(CSI), VIT Vellore in the year 2025.
Full-stack web application built with the MERN stack (MongoDB, Express.js, React, Node.js). This project is structured into two main parts:
client/ β React frontend
server/ β Node.js + Express backend with MongoDB
MERN-Project/
β
βββ client/ # React frontend
β βββ src/ # React components, pages, utils
β βββ public/ # Static assets
β βββ package.json
β
βββ server/ # Node.js + Express backend
β βββ models/ # Mongoose schemas
β βββ routes/ # API routes
β βββ controllers/ # Route logic
β βββ config/ # Database / env configs
β βββ package.json
β
βββ README.md
βββ .gitignore
git clone https://github.com/your-username/your-repo-name.git
cd your-repo-name
Backend (server)
cd server
npm install
Frontend (client)
cd ../client
npm install
DB_URI
(Add more variables as needed for your project)
cd server
npm start
cd client
npm start
If you configure concurrently or nodemon in the root package.json:
npm run dev
Fork the project
Create your feature branch: git checkout -b feature/AmazingFeature
Commit your changes: git commit -m 'Add some AmazingFeature'
Push to the branch: git push origin feature/AmazingFeature
Open a Pull Request