- Deleted event-utils.ts which contained deprecated Port80Handler and its subscribers. - Updated index.ts to remove the export of event-utils. - Refactored ConnectionManager to extend LifecycleComponent for better resource management. - Added BinaryHeap implementation for efficient priority queue operations. - Introduced EnhancedConnectionPool for managing pooled connections with lifecycle management. - Implemented LifecycleComponent to manage timers and event listeners automatically. - Added comprehensive tests for BinaryHeap and LifecycleComponent to ensure functionality.
19 lines
550 B
TypeScript
19 lines
550 B
TypeScript
/**
|
|
* Core utility functions
|
|
*/
|
|
|
|
export * from './validation-utils.js';
|
|
export * from './ip-utils.js';
|
|
export * from './template-utils.js';
|
|
export * from './route-manager.js';
|
|
export * from './route-utils.js';
|
|
export * from './security-utils.js';
|
|
export * from './shared-security-manager.js';
|
|
export * from './websocket-utils.js';
|
|
export * from './logger.js';
|
|
export * from './async-utils.js';
|
|
export * from './fs-utils.js';
|
|
export * from './lifecycle-component.js';
|
|
export * from './binary-heap.js';
|
|
export * from './enhanced-connection-pool.js';
|