express-healthz-endpoint
v1.0.2
Published
Express middleware that ensure's correct headers are set and simply responds OK (200)
Downloads
5
Maintainers
Readme
express-healthz-endpoint
Express middleware that ensure's correct headers are set and simply responds OK (200)
Installation
$ npm install --save express-healthz-endpoint
# or
$ yarn add express-healthz-endpoint
Usage
import express from 'express'
import healthz from 'express-healthz-endpoint'
const app = express()
app.use('/healthz', healthz)