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.

21 lines (20 loc) 1.47 kB
/** * SmartProxy main module exports */ export * from './proxies/nftables-proxy/index.js'; export { HttpProxy, CertificateManager, ConnectionPool, RequestHandler, WebSocketHandler } from './proxies/http-proxy/index.js'; export type { IMetricsTracker, MetricsTracker } from './proxies/http-proxy/index.js'; export type { IHttpProxyOptions, ICertificateEntry, ILogger } from './proxies/http-proxy/models/types.js'; export { SharedRouteManager as HttpProxyRouteManager } from './core/routing/route-manager.js'; export { SmartProxy, ConnectionManager, SecurityManager, TimeoutManager, TlsManager, HttpProxyBridge, RouteConnectionHandler, SmartCertManager } from './proxies/smart-proxy/index.js'; export { SharedRouteManager as RouteManager } from './core/routing/route-manager.js'; export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './proxies/smart-proxy/models/index.js'; export type { TSmartProxyCertProvisionObject } from './proxies/smart-proxy/models/interfaces.js'; export * from './proxies/smart-proxy/utils/index.js'; export { SniHandler } from './tls/sni/sni-handler.js'; export * from './core/models/common-types.js'; export type { IAcmeOptions } from './proxies/smart-proxy/models/interfaces.js'; export * as tls from './tls/index.js'; export * as routing from './routing/index.js'; export * as detection from './detection/index.js'; export * as protocols from './protocols/index.js';