@gorillab/health
v1.0.0
Published
The simplest health check middleware for express app
Downloads
1
Readme
health
The simplest health check middleware for express app
installation
yarn add @gorillab/health
# or
npm install @gorillab/health --save
usage
import Express from 'express';
import Health from '@gorillab/health';
const app = Express();
app.use(Health());
app.listen(9000);
The endpoint is exposed as http://localhost:9000/health
. Done!!!