Skip to content

NodeHttpServerRequest

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.

2 exports Added in v4.0.0 Source

Accessors

Returns the underlying Node IncomingMessage for a platform Node HttpServerRequest.

Signature

declare function toIncomingMessage(self: HttpServerRequest): IncomingMessage;

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

Signature

declare function toServerResponse(self: HttpServerRequest): ServerResponse;