Skip to main content
Module

std/http/server.ts

Deno standard library
Latest
import * as mod from "https://deno.land/std@0.221.0/http/server.ts";

Classes

c
Server
deprecated

Used to construct an HTTP server.

Functions

f
serve
deprecated

Serves HTTP requests with the given handler.

f
serveListener
deprecated

Constructs a server, accepts incoming connections on the given listener, and handles requests on these connections with the given handler.

f
serveTls
deprecated

Serves HTTPS requests with the given handler.

Interfaces

I
ConnInfo
deprecated

Information about the connection a request arrived on.

I
ServeInit
deprecated

Additional serve options.

Additional serve listener options.

I
ServerInit
deprecated

Options for running an HTTP server.

I
ServeTlsInit
deprecated

Initialization parameters for serveTls.

Type Aliases

T
Handler
deprecated

A handler for HTTP requests. Consumes a request and connection information and returns a response.