1.0.2 • Published 6 years ago

express-healthz-endpoint v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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)