import { type Deno } from "https://deno.land/x/deno@v1.36.0/cli/tsc/dts/lib.deno.ns.d.ts";
const { ServeOptions } = Deno;
Options which can be set when calling Deno.serve
.
Properties
A literal IP address or host name that can be resolved to an IP address.
Note about 0.0.0.0
While listening 0.0.0.0
works on all platforms,
the browsers on Windows don't work with the address 0.0.0.0
.
You should show the message like server running on localhost:8080
instead of
server running on 0.0.0.0:8080
if your program supports Windows.
optional
signal: AbortSignalAn AbortSignal
to close the server and all connections.
The handler to invoke when route handlers throw an error.