https://github.com/devmnj/nodejs-todo-app
This is a simple Nodejs web application project which record todo items and store them into MongoDB (NoSQL data base). User can also delete the listed Todo item.
https://github.com/devmnj/nodejs-todo-app
expressjs mongodb-database nodejs-framework
Last synced: 11 months ago
JSON representation
This is a simple Nodejs web application project which record todo items and store them into MongoDB (NoSQL data base). User can also delete the listed Todo item.
- Host: GitHub
- URL: https://github.com/devmnj/nodejs-todo-app
- Owner: devmnj
- License: apache-2.0
- Created: 2020-10-30T02:13:14.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-31T15:11:13.000Z (about 5 years ago)
- Last Synced: 2025-01-16T11:35:59.633Z (about 1 year ago)
- Topics: expressjs, mongodb-database, nodejs-framework
- Language: HTML
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## About
This is a simple `Nodejs` web application project which record todo items and store them into MongoDB (NoSQL data base). User can add and delete the listed Todo item.

## Demo
Here is the [sandbox-demo](https://lmmb8.sse.codesandbox.io/) of the app and the [sandbox](https://codesandbox.io/s/nodejs-mongodb-todo-app-lmmb8) itself.
> This is a Nodejs version of [Tasker app](https://github.com/manojap/Flaask-task-master) found at [Heerokuapp](http:\\minimaltasker.herkuapp.com) , which is written in `python` and `Flask framework`.
## npm pckages
Following npm pacakages used in this project
* body-parser
* mongoose
* ejs templating engine
* express
I also utilized the `nodemon` package which indeed a good tool for `auto reload` while coding and debugging process.
You can install all dependencies by running
``` npm install ```