Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/dts/lib.deno.ns.d.ts>Deno.RequestEvent

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Deno.RequestEvent
import { type Deno } from "https://deno.land/x/deno@v1.28.0/cli/dts/lib.deno.ns.d.ts";
const { RequestEvent } = Deno;

The event yielded from an HttpConn which represents an HTTP request from a remote client.

Properties

readonly
request: Request

The request from the client in the form of the web platform Request.

Methods

respondWith(r: Response | PromiseLike<Response>): Promise<void>

The method to be used to respond to the event. The response needs to either be an instance of Response or a promise that resolves with an instance of Response.

When the response is successfully processed then the promise returned will be resolved. If there are any issues with sending the response, the promise will be rejected.