https://github.com/mohakcodes/nodejs-todoapp
Implementation of backend of nodejs todo app, where CRUD requests, user authentication & storage is handled. The backend integrates with a database to store and retrieve tasks. It ensures security, error handling, and logging for a reliable user experience.
https://github.com/mohakcodes/nodejs-todoapp
Last synced: about 2 months ago
JSON representation
Implementation of backend of nodejs todo app, where CRUD requests, user authentication & storage is handled. The backend integrates with a database to store and retrieve tasks. It ensures security, error handling, and logging for a reliable user experience.
- Host: GitHub
- URL: https://github.com/mohakcodes/nodejs-todoapp
- Owner: mohakcodes
- Created: 2023-06-17T18:59:36.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-17T20:38:01.000Z (about 3 years ago)
- Last Synced: 2025-01-18T15:34:36.533Z (over 1 year ago)
- Language: JavaScript
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo-List Backend
The backend of a Todo app with CRUD operations, login/logout, and database features handles task management, user authentication, and data storage. It provides API endpoints for creating, reading, updating, and deleting tasks. Users can register, log in, and log out securely. The backend integrates with a database to store and retrieve tasks. It ensures security, error handling, and logging for a reliable user experience.
## Author
- [@mohakcodes](https://www.github.com/mohakcodes)
## Run Locally
Clone the project
```bash
git clone https://github.com/mohakcodes/NodeJS-TodoApp.git
```
Go to the project directory
```bash
cd todo-app
```
Install dependencies
```bash
npm install
```
Start the server
```bash
npm run dev
```