req.acceptsCharsets(charset [, ...]) Returns the first accepted charset of the specified character sets, based on the request’s Accept-Charset
req.body Contains key-value pairs of data submitted in the request body. By default, it is undefined, and is populated when you
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
req.acceptsLanguages(lang [, ...]) Returns the first accepted language of the specified languages, based on the request’s Accept-Language
req.originalUrl req.url is not a native Express property, it is inherited from Node’s
req.acceptsEncodings(encoding [, ...]) Returns the first accepted encoding of the specified encodings, based on the request’s Accept-Encoding
req.app This property holds a reference to the instance of the Express application that is using the middleware. If
req.fresh Indicates whether the request is “fresh.” It is the opposite of req.stale. It is true
req.param(name [, defaultValue]) Deprecated. Use either req.params, req.body or req
Page 1 of 3