Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.16 KB

README.md

File metadata and controls

33 lines (26 loc) · 1.16 KB

Employee-Management-System

A MERN app for a basic Employee Management System in which you can add and remove employee details.

Screenshots

Installation

  1. Inside your MongoDB server make a connection to localhost:27017 and make a database using:
    Database Name: "employee-management"
    Database Collection: "employees"
    If you want to use some other names, do remember to also change them accordingly in the backend (api) folder.

  2. Install dependencies in the backend (api) and frontend (client) folder using

npm install
  1. After, run the backend by
cd api
npm start
  1. Now run the frontend by
cd client
npm start

Suggestions and Improvements are Appreciated