Skip to content

DenoHttpServerRequest

Accessor for the web-standard request behind a Deno HTTP server request.

Unlike Bun's accessor, this function has no route-pattern generic because Deno.serve always receives a standard Request. Connection information is intentionally kept internal to DenoHttpServer.

1 exports Added in v4.0.0 Source

Accessors

Returns the underlying web-standard Request from an Effect HttpServerRequest.

Signature

declare function toDenoServerRequest(self: HttpServerRequest): Request;