hyper-express
Version:
High performance Node.js webserver with a simple-to-use API powered by uWebsockets.js under the hood.
16 lines (13 loc) • 669 B
TypeScript
import { Server } from './components/Server';
export * as compressors from 'uWebSockets.js';
export * from './components/Server';
export * from './components/router/Router';
export * from './components/http/Request';
export * from './components/http/Response';
export * from './components/middleware/MiddlewareHandler';
export * from './components/middleware/MiddlewareNext';
export * from './components/plugins/LiveFile';
export * from './components/plugins/MultipartField';
export * from './components/plugins/SSEventStream';
export * from './components/ws/Websocket';
export const express: (...args: ConstructorParameters<typeof Server>) => Server;