Skip to content
/ DSR Public

Node and MongoDb based Restful API for Daily Status Reporting App.

Notifications You must be signed in to change notification settings

Dur09/DSR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSR

Node based Restful API for Daily Status Reporting App.

Installation Steps:

  1. Clone repository
  2. npm install
  3. npm start

API Doc:

  1. GET all data http://localhost/api/dsr

  2. GET data by Id http://localhost/api/dsr/_Id

  3. POST new DSR

{
  "rsrc": "John Doe",
  "tid": "ABC-100",
  "ttitle": "Login Module",
  "status": "Completed",
  "comments": "Deployed to Production",
  "ts": "2020-04-02"
}
  1. Replace existing DSR:
{
  "_id": "dsrId",
  "rsrc": "John Miller",
  "tid": "ABC-101",
  "ttitle": "Login Module Beta",
  "status": "Completed",
  "comments": "Deployed to Production",
  "ts": "2020-04-02"
}
  1. PATCH DSR
{
   "_id": "dsrId",
  "rsrc": "John Doe",
}
  1. DELETE DSR by ID
{
   "_id": "dsrId"
}

About

Node and MongoDb based Restful API for Daily Status Reporting App.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages