Skip to content

BunHttpServerRequest.ts

Accessor for the Bun request behind an Effect HTTP server request.

This module exports toBunServerRequest, which returns the underlying Bun.BunRequest stored inside a Bun-backed HttpServerRequest. It is meant for code that needs to interoperate with Bun-specific request APIs.

Since v4.0.0



Returns the underlying Bun.BunRequest from an Effect HttpServerRequest.

Signature

declare const toBunServerRequest: <T extends string = string>(self: HttpServerRequest) => Bun.BunRequest<T>

Source

Since v4.0.0