Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

connect-health-check

davidguttman5BSD0.2.0

Tiny connect middleware for health check pings

health, connect, ping

readme

health-check

Usage

var healthCheck = require('health-check');

app.configure(function(){
  app.use(healthCheck);
  app.use(express.cookieParser());
  // etc...
});