This is a simple to-do list application.
I created it to practice CRUD operations, mongodb database and expressJs in the backend for providing different routes to the application.
In this app user can :
- create a task.
- specify label/category to each task.
- mark the task as complete.
- can see the past completed tasks.
- can delete the tasks.
- html
- css
- javascript
- express
- mongodb
- download this repository
- run
npm install
in this repositore. It will download all the dependencies. - setup mongodb on your system.
- first,start the mongodb server from cmd by using command
mongod
- then finally, run the index.js file in this repository.