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