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.unstable.d.ts>Deno.ServeHandler

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

UNSTABLE: New API, yet to be vetted.

A handler for HTTP requests. Consumes a request and returns a response.

If a handler throws, the server calling the handler will assume the impact of the error is isolated to the individual request. It will catch the error and if necessary will close the underlying connection.

definition: (request: Request) => Response | Promise<Response>