UNPKG

express-healthcheck-endpoints

Version:

Basic health check provider for Express.js applications. It allows you to register health checks and provides custom ways to retrieve the health status of your application.

17 lines 335 B
const healthStatusValues = { healthy: "healthy", unhealthy: "unhealthy", unknown: "unknown" }; const healthStatusCodes = { healthy: 200, unhealthy: 503, unknown: 500 }; const timeFormats = { iso: "iso", utc: "utc", unix: "unix", calendar: "calendar" }; export { healthStatusValues, healthStatusCodes, timeFormats };