ReferenceAPI Reference/@reckona/mreact-router/adapters/node@reckona/mreact-router/adapters/node4 public exports.FunctionFunctioncreateNodeRequestHandlerfunction createNodeRequestHandler(options: NodeRequestHandlerOptions): NodeRequestHandlerCreates a Node `IncomingMessage`/`ServerResponse` handler for built app-router output. The handler converts Node requests to Web `Request` objects, enforces configured host trust, applies the built renderer, and writes the Web `Response` back to the Node socket.InterfaceInterfaceNodeRequestHandlerOptionsinterface NodeRequestHandlerOptionsConfigures a Node request handler for built app-router output.Re-exportRe-exportRouterInstrumentationconst RouterInstrumentation: unknownRe-exports router instrumentation hooks for Node handlers.Type AliasType AliasNodeRequestHandlertype NodeRequestHandler = (incoming: IncomingMessage, outgoing: ServerResponse): Promise<void>Handles one Node HTTP request/response pair for built app-router output.