express-server-status

1.0.3 • Public • Published

express-server-status

Get a quick overview of the status of an express server (uptime, version, git sha, stats)

Installation

npm install express-server-status --save

Usage

var serverStatus = require('express-server-status');
var express = require('express');
var app = express();

app.use('/status', serverStatus(app));

Example

curl localhost:3000/status

{ 
  server: { 
    status: 'up',
    description: 'OpenCollective API',
    version: '0.0.5',
    uptime: 3,
    uptime_human: 'a few seconds ago',
    requests: { 
      total: 1, 
      last_minute: 0, 
      last_5mn_avg: 0, 
      last_15mn_avg: 0 
    } 
  },
  git: { branch: 'master', sha: '1f86caa' } 
}

Dependents (0)

Package Sidebar

Install

npm i express-server-status

Weekly Downloads

25

Version

1.0.3

License

MIT

Last publish

Collaborators

  • xdamman