Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 788 Bytes

File metadata and controls

41 lines (27 loc) · 788 Bytes

🧑‍💼 Employee Management System (CRUD App)

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.


🚀 Tech Stack

Frontend: ReactJS
Backend: NodeJS, ExpressJS
Database: MongoDB


📦 Setup Instructions

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