Skip to content

Instantly share code, notes, and snippets.

@gerred
Created June 10, 2016 20:24
Show Gist options
  • Save gerred/905806300733c066864a6038e4396b62 to your computer and use it in GitHub Desktop.
Save gerred/905806300733c066864a6038e4396b62 to your computer and use it in GitHub Desktop.
function healthcheck(req, res, next) {
if (req.path === "/healthz") {
res.end(200, "blahblah")
}
next()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment