req.baseUrl
  • References/JavaScript/Express/Request

req.baseUrl The URL path on which a router instance was mounted. The req.baseUrl property is similar

2025-01-10 15:47:30
req.signedCookies
  • References/JavaScript/Express/Request

req.signedCookies When using cookie-parser middleware

2025-01-10 15:47:30
req.originalUrl
  • References/JavaScript/Express/Request

req.originalUrl req.url is not a native Express property, it is inherited from Node’s

2025-01-10 15:47:30
req.acceptsCharsets()
  • References/JavaScript/Express/Request

req.acceptsCharsets(charset [, ...]) Returns the first accepted charset of the specified character sets, based on the request’s Accept-Charset

2025-01-10 15:47:30
req.acceptsLanguages()
  • References/JavaScript/Express/Request

req.acceptsLanguages(lang [, ...]) Returns the first accepted language of the specified languages, based on the request’s Accept-Language

2025-01-10 15:47:30
req.body
  • References/JavaScript/Express/Request

req.body Contains key-value pairs of data submitted in the request body. By default, it is undefined, and is populated when you

2025-01-10 15:47:30
req.param()
  • References/JavaScript/Express/Request

req.param(name [, defaultValue]) Deprecated. Use either req.params, req.body or req

2025-01-10 15:47:30
req.ip
  • References/JavaScript/Express/Request

req.ip Contains the remote IP address of the request. When the trust proxy setting does not evaluate

2025-01-10 15:47:30
req.app
  • References/JavaScript/Express/Request

req.app This property holds a reference to the instance of the Express application that is using the middleware. If

2025-01-10 15:47:30
req.acceptsEncodings()
  • References/JavaScript/Express/Request

req.acceptsEncodings(encoding [, ...]) Returns the first accepted encoding of the specified encodings, based on the request’s Accept-Encoding

2025-01-10 15:47:30