express-intro Flashcards

1
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
2
Q

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

A

app.listen(). - method takes two arguments: the first is the port number to bind the server to, and the second is an optional callback function that will be executed once the server has started.

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