Skip to content

Latest commit

 

History

History
160 lines (141 loc) · 3.89 KB

README.org

File metadata and controls

160 lines (141 loc) · 3.89 KB

say-hi

Express middleware to say hi and monitor uptime.

Usage

var app = require('express')()
app.use(require('say-hi')('example'))
app.listen(process.env.PORT || 3000)

Request

GET /status HTTP/1.1
Accept: application/json
Host: example.com

Response

HTTP/1.1 200 OK
Content-Type: application/json
{
  "status": "hi from example",
  "uptime": 12345
}

License

MIT