Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/texa/src/deps.ts>ServerRequest

A Deno web framework inspired by Oak and Express. Built-in support for WebSockets, middleware and routing.
Latest
class ServerRequest
import { ServerRequest } from "https://deno.land/x/texa@0.8.1/src/deps.ts";

Properties

private
_body: Deno.Reader | null
private
_contentLength: number | undefined | null
private
finalized: boolean
readonly
body: Deno.Reader

Body of the request. The easiest way to consume the body is:

const buf: Uint8Array = await Deno.readAll(req.body);
conn: Deno.Conn
readonly
contentLength: number | null

Value of Content-Length header. If null, then content length is invalid or not given (e.g. chunked encoding).

done: Deferred<Error | undefined>
headers: Headers
method: string
proto: string
protoMajor: number
protoMinor: number
r: BufReader
url: string
w: BufWriter

Methods

finalize(): Promise<void>
respond(r: Response): Promise<void>