Express Flashcards

1
Q

How do you add express to your package dependencies?

A
const express = require('express')
const app = express()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What Express application method binds the server to a network PORT?

A

app.listen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you register a middleware with an Express application?

A

app.use and pass in a function that takes (req, res, next) parameter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?

A

req, res, next

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the Content-Type header of HTTP requests and responses used for?

A

How the recipient should handle the body content

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does express.static() return?

A

A middleware function that serves static files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the local __dirname variable in a Node.js module?

A

The directory name of the current module

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the join() method of Node’s path module do?

A

Joins the file paths together that are listen as args

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the appropriate Content-Type header for requests and responses that contain JSON in their bodies?

A

application/json

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the express.json() middleware do and when would you need it?

A

express.json() is a method inbuilt in express to recognize the incoming Request Object as a JSON Object. This method is called as a middleware in your application using the code: app.use(express.json());

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the significance of an HTTP request’s method?

A

So that YOU know what you are trying to do in a function (app.delete would imply that something needs to be deleted)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly