• query - the parsed querystring
    • body - the body
    • params - the params matching the URL
    • headers - the headers
    • raw - the incoming HTTP request from Node core
    • req (deprecated, use .raw instead) - the incoming HTTP request from Node core
    • id - the request id
    • - the logger instance of the incoming request
    • ip - the IP address of the incoming request
    • ips - an array of the IP addresses, ordered from closest to furthest, in the X-Forwarded-For header of the incoming request (only when the option is enabled)
    • hostname - the hostname of the incoming request (derived from X-Forwarded-Host header when the trustProxy option is enabled)
    • protocol - the protocol of the incoming request (https or )
    • url - the url of the incoming request
    • routerMethod - the method defined for the router that is handling the request
    • routerPath - the path pattern defined for the router that is handling the request
    • is404 - true if request is being handled by 404 handler, false if it is not
    • connection - Deprecated, use socket instead. The underlying connection of the incoming request.
    • socket - the underlying connection of the incoming request