Skip to main content
HTTP Server - Deno documentation

Functions

f
Deno.serve
Serves HTTP requests with the given handler. The below example serves with the port `8000` on hostname `"127.0.0.1"`. ```ts Deno.serve((_req) => new Response("Hello, world")); ```

Interfaces

I
Deno.HttpServer
An instance of the server created using `Deno.serve()` API.
I
Deno.ServeDefaultExport
Interface that module run with `deno serve` subcommand must conform to. To ensure your code is type-checked properly, make sure to add `satisfies Deno.ServeDefaultExport` to the `export default { ... }` like so: ```ts export default { fetch(req) { return new Response("Hello world"); } } satisfies Deno.ServeDefaultExport; ```
I
Deno.ServeHandlerInfo
Additional information for an HTTP request and its connection.
I
Deno.ServeInit
No documentation available
I
Deno.ServeOptions
Options which can be set when calling [`Deno.serve`](./././~/Deno.serve).
I
Deno.ServeTcpOptions
Options that can be passed to `Deno.serve` to create a server listening on a TCP port.
I
Deno.ServeUnixOptions
Options that can be passed to `Deno.serve` to create a server listening on a Unix domain socket.

Type Aliases

T
Deno.ServeHandler
A handler for 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.