UNPKG

tezx

Version:

TezX is a modern, ultra-lightweight, and high-performance JavaScript framework built specifically for Bun. It provides a minimal yet powerful API, seamless environment management, and a high-concurrency HTTP engine for building fast, scalable web applicat

8 lines (7 loc) 219 B
const poweredBy = (serverName) => { return function poweredBy(ctx, next) { ctx.headers.set("x-powered-by", serverName || "TezX"); return next(); }; }; export { poweredBy, poweredBy as default };