This application allows you to perform book addition, removal, and editing operations using the MERN stack (MongoDB, Express.js, React, and Node.js).
- clone this repository:
git clone <repo-url>
- Go to the project folder:
cd folderName
- Go to the Client and Server folders, and follow the steps below for both folders::
cd client
npm install
cd ../server
npm install
4.Create a .env file for the server side and add the MongoDB connection string to it.:
MONGODB_URI=your-mongodb-uri
- Return to the server folder (cd ..) and start both the server and the client:
npm start
When you start the application, you can view books, add new books, edit existing books, and delete them.