Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/capi/deps/std/http.ts>ServeInit

[WIP] A framework for crafting interactions with Substrate chains
Latest
interface ServeInit
implements Partial<Deno.ListenOptions>
import { type ServeInit } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/http.ts";

Additional serve options.

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