UNPKG

healthcheck-ping

Version:

Express middleware exposing a health check endpoint

6 lines (4 loc) 118 B
'use strict'; module.exports = function healthcheck(req, res) { res.status(200).json({ status: 'OK' }).end(); };