You will need to install NodeJS to start the app
A very basci CRUD Restful interface:
app home page: localhost:3000
localhost:3000/api/tasks - (http get)this will list all the task in the mongo db instance
localhost:3000/api/task:id - (http get)this will list one task with the specified id in param
localhost:3000/api/task/ - (http post)this will list save one task with the specified id in param
localhost:3000/api/task:id- (http delete)this will list delete one task with the specified id in param
localhost:3000/api/task:id- (http put)this will list update one task with the specified id in param
Well Done! Enjoy the RESTful API:)