Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fresh/src/server/deps.ts>ServeHandler

The next-gen web framework.
Extremely Popular
Go to Latest
type alias ServeHandler
Deprecated
Deprecated

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

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.

import { type ServeHandler } from "https://deno.land/x/fresh@1.6.2/src/server/deps.ts";
deprecated
definition: (request: Request, connInfo: ConnInfo) => Response | Promise<Response>