-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/rajats98/TodoAPI
corrections
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Complete RESTful Todos API | ||
|
||
## Overview | ||
Todo-list app to manage todos, created using Node,Express,MongoDb. | ||
|
||
**Functionalities** | ||
|
||
1).Add a todo | ||
|
||
2).Mark a todo done | ||
|
||
3).Delete a todo | ||
|
||
## Built with Node, Express, and Mongo | ||
(node,npm and MongoDb should be installed to run this) | ||
|
||
Install dependecies using | ||
``` | ||
npm install | ||
``` | ||
Create/Start Mongo server | ||
and then Start Node server using | ||
``` | ||
node index.js | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,4 +50,4 @@ exports.deleteTodo = function(req,res){ | |
}) | ||
} | ||
|
||
module.exports = exports; | ||
module.exports = exports; |