express-healthz-endpoint

Express middleware that ensure's correct headers are set and simply responds OK (200)

Usage no npm install needed!

<script type="module">
  import expressHealthzEndpoint from 'https://cdn.skypack.dev/express-healthz-endpoint';
</script>

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)