Data extracted from an incoming request to a node server

Hierarchy

  • ExtractedNodeRequestData

Properties

cookies?: {
    [key: string]: string;
}

String representing the cookies sent along with the request

Type declaration

  • [key: string]: string
data?: string

Any data sent in the request's body, as a JSON string

headers?: {
    [key: string]: string;
}

Specific headers from the request

Type declaration

  • [key: string]: string
method?: string

The request's method

query_string?: QueryParams

The request's query params

url?: string

The request's URL, including query string

Generated using TypeDoc