Skip to content

NodeHttpServerRequest.ts

Accessors for the Node.js objects behind an Effect HTTP server request.

toIncomingMessage returns the underlying Node http.IncomingMessage. toServerResponse returns the underlying Node http.ServerResponse, evaluating the stored response thunk when the response was created lazily.

Since v4.0.0



Returns the underlying Node IncomingMessage for a platform Node HttpServerRequest.

Signature

declare const toIncomingMessage: (self: HttpServerRequest) => Http.IncomingMessage

Source

Since v4.0.0

Returns the underlying Node ServerResponse for a platform Node HttpServerRequest, evaluating the stored response thunk when the response was created lazily.

Signature

declare const toServerResponse: (self: HttpServerRequest) => Http.ServerResponse

Source

Since v4.0.0