Skip to main content
Module

x/fastro/server/deps.ts>ServerInit

Fast and simple web application framework for deno
Go to Latest
interface ServerInit
implements Partial<Deno.ListenOptions>
import { type ServerInit } from "https://deno.land/x/fastro@v0.60.1/server/deps.ts";

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.