A simple Employee Management System built using ReactJS (frontend), NodeJS + ExpressJS (backend), and MongoDB (database).
This project demonstrates full-stack CRUD (Create, Read, Update, Delete) functionality for managing employee data efficiently.
Frontend: ReactJS
Backend: NodeJS, ExpressJS
Database: MongoDB
1-Clone the repository
git clone
cd Employee-Management-System
2-Run the Frontend (React)
cd client
npm install
npm start
This will start your React app at:
http://localhost:3000
3-Run the Backend (Node + Express)
cd server
npm install
nodemon index.js
This will start your server at:
http://localhost:5000