Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.ns.d.ts>Deno.ServeUnixHandler

A modern runtime for JavaScript and TypeScript.
Go to Latest
type alias Deno.ServeUnixHandler
import { type Deno } from "https://deno.land/x/deno@v1.40.5/cli/tsc/dts/lib.deno.ns.d.ts";
const { ServeUnixHandler } = Deno;

A handler for unix domain socket HTTP requests. Consumes a request and returns a response.

If a handler throws, the server calling the handler will assume the impact of the error is isolated to the individual request. It will catch the error and if necessary will close the underlying connection.

definition: (request: Request, info: ServeUnixHandlerInfo) => Response | Promise<Response>