express Flashcards
What is Express useful for?
How does Express fit into a full-stack web application?
How do you add express to your package dependencies?
npm install express
What Express application method starts the server and binds it to a network PORT?
the app.listen method and port is often used to identify specific services.
What is Express middleware?
What is Express middleware useful for?
How do you mount a middleware with an Express application?
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
What is an API endpoint?
what you send in the request path it’s everything after the colon
What is the appropriate “Content-Type” header for HTTP messages that contain JSON in their bodies?
What is the significance of an HTTP request’s method?
it tells you what you are doing with the information
Is a server required to do a request?
NO, it’s all convention
Where does express and node fit in the three tier architecture?
in the backend or server
What does the function app.get do?
it checks if the path matches (or endpoint) and if so it runs the function app.use
What does app.use mean?
it mounts a middleware function
When does express run the middleware?
when the path runs through the network port
What is the middleware?
app.use is a callback function or middleware they are the same thing
If there are multiple middleware, do they all execute?
only if they call next( ) if not the chain ends. if there are no response it sends an error.
What is the difference between app.use and app.get?
app.get is a structured call that uses app.use
What is the difference between res.send, res.json and res.sendStatus?
res.send is the general one, res.json JSON stringifies the data and calls res. send to send out the data, and res.sendStatus sends the status code.
What is the purpose of the Express Static middleware?
What does express.static() return?
it returns a middleware function
What are several examples of static files?
images, css files, html files, json files, basically anything where it treated like a read file
What is a good way to serve application images using Express?
using express.static