Skip to main content
Module

std/http/server.ts>ServerRequest

Deno standard library
Go to Latest
class ServerRequest
import { ServerRequest } from "https://deno.land/std@0.50.0/http/server.ts";

Properties

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

Body of the request.

const buf = new Uint8Array(req.contentLength);
let bufSlice = buf;
let totRead = 0;
while (true) {
  const nread = await req.body.read(bufSlice);
  if (nread === null) break;
  totRead += nread;
  if (totRead >= req.contentLength) break;
  bufSlice = bufSlice.subarray(nread);
}
conn: 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
url: string

Methods

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