express-intro Flashcards
1
Q
What is Express useful for?
A
implementing http endpoints / routes
2
Q
How does Express fit into a full-stack web application?
A
it manages the http requests
3
Q
How do you add express to your package dependencies?
A
npm i express;
4
Q
What Express application method starts the server and binds it to a network PORT?
A
app.listen(port);