A MERN app for a basic Employee Management System in which you can add and remove employee details.
-
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. -
Install dependencies in the backend (api) and frontend (client) folder using
npm install
- After, run the backend by
cd api
npm start
- Now run the frontend by
cd client
npm start