Skip to main content
Module

x/dero/mod.ts>HttpRequest

Fast web framework for Deno (support native HTTP/2 Hyper and std/http).
Latest
class HttpRequest
Re-export
import { HttpRequest } from "https://deno.land/x/dero@1.2.4/mod.ts";

Index Signatures

[k: string]: any

Properties

_parsedUrl: { [k: string]: any; }
body: Deno.Reader | null
bodyUsed: boolean | undefined
conn: Deno.Conn
getBaseUrl: () => string
getCookies: (decode?: boolean) => Record<string, any>
headers: Headers
method: string
originalUrl: string
params: { [k: string]: any; }
parsedBody: { [k: string]: any; }
path: string
pond: (body?: TBody | { [k: string]: any; } | null, opts?: PondOptions) => Promise<any>
proto: string
query: { [k: string]: any; }
readonly
request: Request
respond: (r: any) => Promise<void>
respondWith: (r: Response | Promise<Response>) => any
secure: boolean | undefined
url: string