f
Deno.serve
Serves HTTP requests with the given handler.
f
Deno.serveHttp
Provides an interface to handle HTTP request and responses over TCP or TLSconnections. The method returns an HttpConn
which yields upRequestEvent
events, which utilize the web platform standardRequest
and Response
objects to handle the request.
I
I
I
I
I
Deno.ServeOptions
Options which can be set when calling Deno.serve
.
I
I
I
I
I
I
Deno.HttpConn
The async iterable that is returned from serveHttp
whichyields up RequestEvent
events, representing individualrequests on the HTTP server connection.
I
Deno.RequestEvent
The event yielded from an HttpConn
which represents an HTTPrequest from a remote client.
T
Deno.ServeHandler
A handler for HTTP requests. Consumes a request and returns a response.
T
Deno.ServeUnixHandler
A handler for unix domain socket HTTP requests. Consumes a request and returns a response.
T
Deno.Server
No documentation available