Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.58 KB

File metadata and controls

27 lines (22 loc) · 1.58 KB

Express

Review, Research, and Discussion

The main difference between the PUT and PATCH method is that the PUT method uses the request URI to supply a modified version of the requested resource which replaces the original version of the resource, whereas the PATCH method supplies a set of instructions to modify the resource.
Services or tools that allow you to “mock” an API for development

  • Postman.
  • Mocky.io.
  • MockServer.
term describtion
web server a server that sends an html file as a response
Express a light node framework that provides multiple services for the back end
Routing how does an application end point responds to client request
WRRC web request response circle

Which 3 things had you heard about previously and now have better clarity on?
web server, Express and WRRc.
Which 3 things are you hoping to learn more about in the upcoming lecture/demo?
node, express and TDD.
What are you most excited about trying to implement or see how it works?
Testing.

Preview

Node.js: is an open-source, cross-platform runtime environment that allows developers to create all kinds of server-side tools and applications in JavaScript.
express: is the most popular Node web framework, and is the underlying library for a number of other popular Node web frameworks.