gorillab-health
v1.0.1
Published
Gorillab health check middleware for express
Downloads
3
Readme
health
the simplest health check middleware for express app
usage
import Express from 'express';
import health from 'health';
const app = Express();
app.use(health);
app.listen(9000);
The endpoint is exposed as http://localhost:9000/health
. Done!!!