The Employee Management System is a web application built using the MERN (MongoDB, Express.js, React.js, Node.js) stack. It enables users to perform CRUD (Create, Read, Update, Delete) operations related to employee records efficiently.
- Create: Add new employee records with relevant details.
- Read: View existing employee records with their information.
- Update: Modify employee details such as name, position, and contact information.
- Delete: Remove employee records from the system.
- MongoDB: NoSQL database for storing employee information.
- Express.js: Backend framework for handling HTTP requests and routing.
- React.js: Frontend library for building user interfaces.
- Node.js: JavaScript runtime environment for server-side development.
To run the Employee Management System on your local machine, follow these steps:
-
Clone the repository to your local machine:
git clone https://github.com/ShivankK26/Employee-Management-System .
-
Navigate to the project directory:
cd Employee-Management-System
-
Install server-side dependencies:
cd server npm install
-
Install client-side dependencies:
cd ../client npm install
-
Start the MongoDB server on your local machine.
-
Start the backend server:
cd ../server nodemon index.js
-
Start the frontend application:
cd ../client npm run dev
-
Access the Employee Management System in your browser at
http://localhost:5173
.
Once the application is running, you can perform the following actions:
- Create Employee: Click on the "Add Employee" button to create a new employee record.
- Read Employee: View the list of existing employees along with their details.
- Update Employee: Click on the "Edit" button next to an employee record to modify the details.
- Delete Employee: Click on the "Delete" button to remove an employee from the system.
Contributions to the Employee Management System are welcome! To contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and ensure tests pass.
- Submit a pull request detailing the changes made and any relevant information.
Manage your employee records efficiently with the Employee Management System built using the powerful MERN stack. Simplify CRUD operations and streamline your workflow today!