UNPKG

@compas/server

Version:

Koa server and common middleware

13 lines (12 loc) 226 B
/** * Middleware that immediately returns on ANY /_health */ export function healthHandler() { return (ctx, next) => { if (ctx.path === "/_health") { ctx.body = ""; } else { return next(); } }; }