Your first HTTP Server Flashcards
Use Express to handle a HTTP POST method
.
Use Express to handle a HTTP GET method
.
Set the content type of an HTTP response to json, in Node and Express
.
Set the content type of an HTTP response to html, in Node and Express.
.
Set the content type of an HTTP response to text, in Node and Express
.
Describe what Express Middleware is
.
Describe why the body-parser package is needed in Express
.
Use curl to send HTTP requests to an HTTP server
.
Describe the use cases for the HTTP status codes 200, 404, 500.
. ( Note you can see a quick preview of all these status codes right inside your CLI by writing code that gets the http module and console logs it )
Render HTML using ejs templates on Node
.
Respond to an HTTP request with HTML from a template
.