Skip to content

Entry level back-end application with Nodejs, Express and MongoDB

Notifications You must be signed in to change notification settings

marcusvc/nodejs-express-mongodb-101

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodejs-express-mongodb-101

Entry level back-end application with Nodejs, Express and MongoDB

GET: https://nodejs-messages-api-101.herokuapp.com/messages

POST: https://nodejs-messages-api-101.herokuapp.com/messages

GET: https://nodejs-messages-api-101.herokuapp.com/messages/:msgID

PUT: https://nodejs-messages-api-101.herokuapp.com/messages/:msgID

DELETE: https://nodejs-messages-api-101.herokuapp.com/messages/:msgID

Message schema:

{
   title: {
      type: String
   },
   body: {
      type: String
   },
   created_date: {
      type: Date,
      default: Date.now
   }
}

Releases

No releases published

Packages

No packages published