@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) • 466 B
TypeScript
/**
* SmartProxy Route Utilities
*
* This file exports all route-related utilities for the SmartProxy module,
* including validators, utilities, and socket handlers for working with routes.
*/
export * from './route-validator.js';
export * from './route-utils.js';
export { generateDefaultCertificate } from './default-cert-generator.js';
export { ConcurrencySemaphore } from './concurrency-semaphore.js';
export { SocketHandlers } from './socket-handlers.js';