Skip to main content
Module

x/live/deps.ts>ServeHandler

deco is the edge-native site editor and app framework for building dynamic, high-performance sites with a built-in visual admin UI.
Very Popular
Go to Latest
type alias ServeHandler
import { type ServeHandler } from "https://deno.land/x/live@1.44.5/deps.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>