UNPKG

@nodeboot/http-server

Version:

Node-Boot http server package. It provides a simple way to create HTTP servers using Node.js, with support for routing, middleware, and request handling.

6 lines 382 B
import { ServerConfigOptions, ServerConfigProperties } from "@nodeboot/engine"; import { SerializeOptions } from "cookie"; import { CorsOptions } from "./cors.types"; export type HttpServerConfigs = ServerConfigOptions<SerializeOptions, CorsOptions>; export type HttpServerConfigProperties = ServerConfigProperties<SerializeOptions, CorsOptions>; //# sourceMappingURL=types.d.ts.map