/Inventory-Management-System-MERN-CRUD-App

Inventory Management System MERN CRUD App (MERN Stack Project). A simple MERN project that lets the user insert, update, delete & get products from the MongoDB.

Primary LanguageJavaScript

Inventory Management System MERN CRUD App

A simple MERN project that lets the user insert, update, delete & get products from the MongoDB.

To Run App:

1. Open the folder in vs code and run (npm install) command.

2. In MongoDB Compass:

  • Create Database: IMS
  • Collection Name: products

3. Then in vs code, open two terminals in split:

image

4. In one terminal run these commands (For Backend / Server):

  • cd Backend
  • npm run server

5. In the other terminal run these commands (For Frontend / Client):

  • cd Frontend
  • cd inventory_management_system
  • npm start image

Output:

1. GET (Displaying products)

image

2. POST (Inserting a new product)

image image image image

3. PUT (Updating a product)

image image

4. DELETE (Deleting a product)

image image