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.

12 lines (11 loc) 368 B
/** * Unified routing module * Provides all routing functionality in a centralized location */ export * from './types.js'; export * from './matchers/index.js'; export * from './specificity.js'; export * from './route-manager.js'; export * from './route-utils.js'; export { matchers } from './matchers/index.js'; export { RouteSpecificity } from './specificity.js';