Skip to main content
Module

x/cav/deps.ts>http.ServerInit

A server framework for Deno
Go to Latest
interface http.ServerInit
implements Partial<Deno.ListenOptions>
import { type http } from "https://deno.land/x/cav@0.0.21/deps.ts";
const { ServerInit } = http;

Options for running an HTTP server.

Properties

handler: Handler

The handler to invoke for individual HTTP requests.

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

The handler to invoke when route handlers throw an error.

The default error handler logs and returns the error in JSON format.