npm / Express Flashcards

1
Q

What is NPM?

A

software registry that developers use to borrow/share packages; can also refer to the npm website or the Command Line Interface (CLI)

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

What is a package?

A

reusable code - a directory w/ one or more files, including package.json

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

How can you create a package.json with npm?

A

navigate to the root directory of the package; npm init -y

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

What is a dependency and how do you add one to a package?

A

a package required by the application; npm install dependencyName

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

What happens when you add a dependency to a package with npm?

A

updates the package.json file to include the dependency and downloads the dependency library to the computer

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

How do you add express to your package dependencies?

A

npm install express

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

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

A

listen( )

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

How do you mount a middleware with an Express application?

A

.use( ) method

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

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

A

request and response objects

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

What is the appropriate Content-Type header for HTTP messages that contain JSON in their bodies?

A

application/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

for routing - determines how an application responds to a client request to a particular endpoint

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

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

A

it parses JSON; you use it when your app needs to parse JSON request bodies (so that they are not undefined)

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

What does express.static() return?

A

middleware function that serves static files

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

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

A

the absolute file path to the directory of the Node.js module

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

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

A

joins all given path segments together using the platform-specific separator as a delimiter

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