Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rishavconsolelog21/dealsdray
This repo is for DealsDray Task, whose Tech Stack in the MERN Stack. Which have User Register, Login and Logout and Employee management system
https://github.com/rishavconsolelog21/dealsdray
bcryptjs cors express-js javascript jwt-authentication mongodb reactjs
Last synced: about 1 month ago
JSON representation
This repo is for DealsDray Task, whose Tech Stack in the MERN Stack. Which have User Register, Login and Logout and Employee management system
- Host: GitHub
- URL: https://github.com/rishavconsolelog21/dealsdray
- Owner: rishavConsoleLog21
- License: mit
- Created: 2024-09-14T11:03:06.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-27T15:44:20.000Z (3 months ago)
- Last Synced: 2024-11-22T04:42:19.219Z (about 1 month ago)
- Topics: bcryptjs, cors, express-js, javascript, jwt-authentication, mongodb, reactjs
- Language: JavaScript
- Homepage:
- Size: 185 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# MERN Stack CRUD Operations Example
This is a simple example demonstrating CRUD (Create, Read, Update, Delete) operations using the MERN stack. Where I build a basic application to manage user and employee for DealsDray.
## Prerequisites
Before running this application, ensure you have the following installed:
- Node.js and npm(node package manager)
- MongoDB## Installation
1. Clone this repository:
```bash
git clone
```2. Navigate to the project directory:
```bash
cd dealsdray
```3. Install server dependencies:
```bash
cd backend
npm install
```4. Install client dependencies:
```bash
cd ../frontend
npm install
```## Usage
1. Start the server:
```bash
cd ../backend
npm run dev
```2. Start the client:
```bash
cd ../frontend
npm run dev
```3. Open your browser and go to `http://localhost:5173/` to view the application.
## Endpoints
### Users API
#### POST /users/register
- Description: Register a new user
- Request Body: User registration details (JSON)
- Response: Newly registered user object#### POST /users/login
- Description: Login a user
- Request Body: User login credentials (JSON)
- Response: Authentication token and user details#### POST /users/logout
- Description: Logout a user
- Response: Success message### Employee API
#### GET /employees
- Description: Get all employees
- Response: Array of user objects#### GET /employees/:id
- Description: Get a single user by ID
- Parameters:
- `id`: User ID
- Response: User object#### POST /employees
- Description: Create a new user
- Request Body: User object (JSON)
- Response: Newly created user object#### PUT /employees/:id
- Description: Update an existing Employee
- Parameters:
- `id`: Employee ID
- Request Body: Updated Employee object (JSON)
- Response: Updated Employee object#### DELETE /employees/:id
- Description: Delete a Employee by ID
- Parameters:
- `id`: Employee ID
- Response: Success message## Frontend
The frontend is built with React.js and styled with TailwindCSS. It provides a simple user interface to perform CRUD operations on user data.
## Backend
The backend is built with Node.js and Express.js. It provides RESTful APIs to interact with the MongoDB database.
## Database
This application uses MongoDB as its database to store user data. Make sure MongoDB is running locally on your machine.
## Contributing
Contributions are welcome! Feel free to submit a pull request or open an issue if you find any bugs or want to suggest improvements.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---