Skip to main content
Module

std/http/mod.ts>Handler

The Deno Standard Library
Latest
type alias Handler
Deprecated
Deprecated

(will be removed after 1.0.0) Use Deno.ServeHandler instead.

import { type Handler } from "https://deno.land/std@0.223.0/http/mod.ts";

A handler for HTTP requests. Consumes a request and connection information 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 close the underlying connection.

deprecated
definition: (request: Request, connInfo: ConnInfo) => Response | Promise<Response>