Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/fsrouter/deps.ts>http.Handler

A file system based router for Deno.
Go to Latest
type alias http.Handler
import { type http } from "https://deno.land/x/fsrouter@2.11.1/deps.ts";
const { Handler } = http;

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>