reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

code fellows 301

Read: 12 - CRUD

Reading

Status Codes Based On REST Methods

  1. Descripe the data:
  1. A status code 202 code tells the client that the request was valid, but is process.
  2. A status code 308 code is a permanent redirect.
  3. If an update didn’t return to a client, send code 404.
  4. If resource no longer exists, send code 410.
  5. The ‘Forbidden’ status code is code 403.

Build A REST API With Node.js, Express, & MongoDB - Quick