UNPKG

@push.rocks/smartproxy

Version:

A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.

14 lines (13 loc) 866 B
/** * Forwarding system module * Provides a flexible and type-safe way to configure and manage various forwarding strategies */ export { ForwardingHandler } from './handlers/base-handler.js'; export * from './handlers/http-handler.js'; export * from './handlers/https-passthrough-handler.js'; export * from './handlers/https-terminate-to-http-handler.js'; export * from './handlers/https-terminate-to-https-handler.js'; export * from './factory/forwarding-factory.js'; export type { TForwardingType, IForwardConfig, IForwardingHandler } from './config/forwarding-types.js'; export { ForwardingHandlerEvents } from './config/forwarding-types.js'; export { createHttpRoute, createHttpsTerminateRoute, createHttpsPassthroughRoute, createHttpToHttpsRedirect, createCompleteHttpsServer, createLoadBalancerRoute } from '../proxies/smart-proxy/utils/route-patterns.js';