express-intro Flashcards

1
Q

What is Express useful for?

A

implementing http endpoints / routes

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

How does Express fit into a full-stack web application?

A

it manages the http requests

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

How do you add express to your package dependencies?

A

npm i express;

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

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

A

app.listen(port);

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