Common methods & their standard meanings The req-res cycle Components of a request or response
how app.use differs from app.get/app.post/app.put etc. what req, res, and next are / do normal vs. error-handling middleware
Logging Body parsing Static routing
methods vs. URIs routing to sub-resources (e.g. kittens, kittens/123, kittens/123/friends) URI parameters (e.g. kittens/:id) and how to access them Query strings (e.g. kittens?color=calico) and how to access them Request bodies (in JSON or URL-encoded) and how to access them using modular sub-routers created with express.Router()