Skip to main content
Module

x/denoliver/deps.ts>ServerRequest

A simple, dependency free static file server for Deno with possibly the worst name ever.
Latest
class ServerRequest
import { ServerRequest } from "https://deno.land/x/denoliver@2.3.1/deps.ts";

Properties

readonly
body: Deno.Reader

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

const buf: Uint8Array = await 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).

readonly
done: Promise<Error | undefined>
headers: Headers
method: string
proto: string
protoMajor: number
protoMinor: number
url: string
w: BufWriter