UNPKG

@raven-js/wings

Version:

Zero-dependency isomorphic routing library for modern JavaScript - Server and CLI routing

25 lines (22 loc) 756 B
/** * @author Anonyfox <max@anonyfox.com> * @license MIT * @see {@link https://github.com/Anonyfox/ravenjs} * @see {@link https://ravenjs.dev} * @see {@link https://anonyfox.com} */ /** * @file Core routing engine - isomorphic HTTP router with zero dependencies. * * Wings core provides surgical routing primitives for modern JavaScript applications. * Built for performance-critical environments: serverless functions, single-page applications, * and high-throughput servers. * * Exports foundation classes for building complete routing solutions. */ export * from "./context.js"; export * from "./http-methods.js"; export * from "./middleware.js"; export * from "./mime-utils.js"; export * from "./route.js"; export * from "./router.js";