reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 401: Class 02 - Express


Questions

  1. PUT vs. PATCH: A PUT request will replace an entire resource. A PATCH request will make specific changes to part of a resource

  2. Services that allow you to mock an API:
  3. Swagger vs. APIDoc.js: APIDoc.js is a templating engine that produces API documentation. Swagger performs a similar function by creating a .yml file or .json file that contains relevant information regarding your API

  4. SOAP vs. ReST: *SOAP (Simple Object Access Protocol) relies on XML messaging. The language being used to implement SOAP can make its use very complicated. ReST (Representational State Transfer) is typically easier to implement with JavaScript because it does not require translation to XML, but rather uses the URL to contain the needed info.

Vocabulary

Read: # An introduction to NodeJS and Express

Read: What is NPM

Read: What is TDD

Watch: CI/CD

Preview

1.Things I understand better now

2.Need to learn more about

3.Excited to implement


Return to reading-notes Deployed Site

Return to reading-notes Mark Down