https://github.com/ashrafulhossain1/to-do-server
Task managemnt appliation To-Do, In Progress, and Done operation. The backend uses Express.js and MongoDB for handling CRUD operations and persists task data in real-time.
https://github.com/ashrafulhossain1/to-do-server
expressjs mongdb nodejs
Last synced: about 2 months ago
JSON representation
Task managemnt appliation To-Do, In Progress, and Done operation. The backend uses Express.js and MongoDB for handling CRUD operations and persists task data in real-time.
- Host: GitHub
- URL: https://github.com/ashrafulhossain1/to-do-server
- Owner: ashrafulhossain1
- Created: 2025-02-20T19:59:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-22T10:36:46.000Z (over 1 year ago)
- Last Synced: 2025-07-22T07:53:59.919Z (11 months ago)
- Topics: expressjs, mongdb, nodejs
- Language: JavaScript
- Homepage: https://to-do-server-black.vercel.app
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Task Management Backend
## Short Description
This is the backend for a Task Management Application. It provides APIs to manage tasks categorized into three sections: **To-Do**, **In Progress**, and **Done**. The backend uses **Express.js** and **MongoDB** for handling CRUD operations and persists task data in real-time.
---
## Live Links
- **Backend API**: [https://to-do-server-black.vercel.app/](https://to-do-server-black.vercel.app/)
---
## Dependencies
The following dependencies are used in this project:
- `cors`: ^2.8.5
- `dotenv`: ^16.4.7
- `express`: ^4.21.2
- `mongodb`: ^6.12.0
---
## Installation Steps
1. Clone the repository:
```bash
git clone https://github.com/ashrafulhossain1/to-do-server
cd backend
```
2. Install dependencies:
```bash
npm install
```
3. Create a `.env` file in the root directory and add the following environment variables:
```env
PORT=5000
USER_DB=your_mongodb_username
PASS_DB=your_mongodb_password
```
4. Start the server:
```bash
nodemon start
```
5. The backend will run on `http://localhost:5000`.
---
## Technologies Used
- **Node.js**
- **Express.js**
- **MongoDB**
- **Mongoose** (optional, if schema validation is needed)
- **Vercel** (for deployment)