Socket
Socket
Sign inDemoInstall

express-status-monitor

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-status-monitor - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

4

package.json
{
"name": "express-status-monitor",
"version": "0.1.3",
"version": "0.1.4",
"description": "Realtime Monitoring for Express-based Node applications",

@@ -59,2 +59,2 @@ "main": "index.js",

}
}
}

@@ -55,2 +55,12 @@ # express-status-monitor

Example using [http-auth](https://www.npmjs.com/package/http-auth)
```javascript
const auth = require('http-auth');
const basic = auth.basic({realm: 'Monitor Area'}, function(user, pass, callback) {
callback(user === 'username' && pass === 'password');
});
app.get('/status', auth.connect(basic), require('express-status-monitor')());
```
## Tests and coverage

@@ -57,0 +67,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc