UNPKG

tezx

Version:

TezX is a high-performance, lightweight JavaScript framework designed for speed, scalability, and flexibility. It enables efficient routing, middleware management, and static file serving with minimal configuration. Fully compatible with Node.js, Deno, an

7 lines (6 loc) 177 B
export const poweredBy = (serverName) => { return function poweredBy(ctx, next) { ctx.header("X-Powered-By", serverName || "TezX"); return next(); }; };