Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.ServeHandler

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

type ServeHandler = (request: Request) => Response | Promise<Response>;

§Type

§
(request: Request) => Response | Promise<Response>
[src]