res.app This property holds a reference to the instance of the Express application that is using the middleware. res
req.originalUrl req.url is not a native Express property, it is inherited from Node’s
Use the application generator tool, express-generator, to quickly create an application skeleton. Install express-generator
req.acceptsCharsets(charset [, ...]) Returns the first accepted charset of the specified character sets, based on the request’s Accept-Charset
app.post(path, callback [, callback ...]) Routes HTTP POST requests to the specified path with the specified callback functions. For more information
router.route(path) Returns an instance of a single route which you can then use to handle HTTP verbs with optional middleware. Use router
req.baseUrl The URL path on which a router instance was mounted. The req.baseUrl property is similar
req.signedCookies When using cookie-parser middleware
Adding the capability to connect databases to Express apps is just a matter of loading an appropriate Node.js driver for the database in your app. This document briefly explains
res.end([data] [, encoding]) Ends the response process. This method actually comes from Node core, specifically the
Page 1 of 11