Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 819 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 819 Bytes

BookList APP (MERN Stack)

This application allows you to perform book addition, removal, and editing operations using the MERN stack (MongoDB, Express.js, React, and Node.js).

installation

  1. clone this repository:
  git clone <repo-url>
  1. Go to the project folder:
  cd folderName
  1. 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
  1. Return to the server folder (cd ..) and start both the server and the client:
npm start

Usage

When you start the application, you can view books, add new books, edit existing books, and delete them.