This is a BookStore App - based on MERN Stack.
A full-stack Book Store Application built with the MERN Stack: MongoDB, Express.js, React, and Node.js. This project showcases complete CRUD functionality on both frontend and backend, featuring a simple and clean UI for managing books.
- Frontend: React, React Router, Axios
- Backend: Node.js, Express.js, MongoDB (Mongoose)
- Database: MongoDB Atlas
- Tools: Vite, Postman, Visual Studio Code
- Backend CRUD operations (Create, Read, Update, Delete)
- Frontend CRUD UI
- Responsive frontend with React
- RESTful API built with Express and Node.js
- MongoDB for Database integration
- CORS policy handling for frontend-backend integration
- Clean routing system on both frontend and backend
# Clone the repository
git clone https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git
# Install backend dependencies
cd backend
npm install
# Install frontend dependencies
cd ../frontend
npm install
# Run the app
# Backend
npm run dev
# Frontend
npm run dev