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.

11 lines (10 loc) 412 B
/** * SmartProxy Route Utilities * * This file exports all route-related utilities for the SmartProxy module, * including helpers, validators, utilities, and patterns for working with routes. */ export * from './route-helpers.js'; export * from './route-validators.js'; export * from './route-utils.js'; export { createApiGatewayRoute, addRateLimiting, addBasicAuth, addJwtAuth } from './route-helpers.js';