How do you add express to your package dependencies?
npm install express
What Express application method starts the server and binds it to a network PORT?
The app.listen() function is used to bind and listen the connections on the specified host and port.