Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
interface ServeListenerOptions
Deprecated
Deprecated

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

Additional serve listener options.

import { type ServeListenerOptions } from "https://deno.land/std@0.211.0/http/mod.ts";

Properties

optional
signal: AbortSignal

An AbortSignal to close the server and all connections.

optional
onError: (error: unknown) => Response | Promise<Response>

The handler to invoke when route handlers throw an error.

optional
onListen: (params: { hostname: string; port: number; }) => void

The callback which is called when the server started listening