Skip to main content
Module

x/enzastdlib/vendor/@deno-std-http.ts>Handler

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
type alias Handler
import { type Handler } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-http.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.

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