Skip to content

Latest commit

 

History

History

restful-mongo-node-express

The Uniform Interface

Resources(n):

  • GET
  • POST
  • PUT / PATCH
  • DELETE

Hypermedia as the Engine of Application State

(HATEOAS)

Top Five Security Threats


  1. Injection attacks
  2. Broken authentication
  3. Sensitive data exposure
  4. XML entities
  5. Broken access control
    See more at: OWASP Foundation link

Set up MongoDB with Docker

  1. docker pull mongo
  2. docker run --name mongodb -p 27017:27017 -d mongo
  3. Verify with docker ps