This project is a full-stack MERN (MongoDB, Express.js, React.js, Node.js) application designed to demonstrate a robust and scalable web application solution. It includes features such as user authentication, data management, and interactive user interfaces.
- User Authentication: Secure login and registration with JWT-based authentication.
- CRUD Operations: Create, read, update, and delete operations for managing data.
- Real-time Updates: Responsive frontend with real-time updates.
- Data Protection: Implemented security measures to protect user data and interactions.
- Clone the Repository
git clone https://github.com/your-username/your-repo-name.git
- Navigate to the Project Directory
cd your-repo-name
- Install Backend Dependencies
cd backend npm install
- Install Frontend Dependencies
cd ../frontend npm install
- Setup and Configuration
Create a .env
file in the backend directory with the following variables:
MONGO_URI=your_mongodb_connection_string
JWT_SECRET=your_jwt_secret
PORT=5000