Socket
Socket
Sign inDemoInstall

express-monitoring

Package Overview
Dependencies
63
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    express-monitoring

Express Monitoring


Version published
Weekly downloads
8
Maintainers
1
Install size
25.0 kB
Created
Weekly downloads
 

Readme

Source

Express Monitoring

codecov Build Status

Package allows to define custom monitoring controls (rules) and execute them using express handlers.

This NodeJS adaptation of Horat1us/yii2-monitoring package for PHP.

Written on Typescript.

Installation

Using NPM:

npm i express-monitoring

Documentation

Structure

  • Controller - controller with express request handlers
  • Control - interface for monitoring control items.
    • Compose - pre-defined control to compose another controls.
    • Dependency - pre-defined control to block execution of another control.
  • FailureError - error class to be thrown in controls.

Usage

You need to define your own Control or use one of pre-defined. Then, just create Controller instance and add it to routes.

// region Monitoring Controller Definition
// This should be placed to separate file
import * as monitoring from "express-monitoring";

// can also be async or return promise
const SomeControl: monitoring.Control = () => {
    // check for something
    const isSuccessful = false;
    
    if (!isSuccessful) {
        throw new monitoring.FailureError(
            "Something goes wrong.",
            0, // error code
            {}, // details, optional
            "NotSuccessful" // string error type
        );
    }
    
    return {}; // you also may return details
};

let controls = {
    "controlID": SomeControl, 
};
const Monitoring = new monitoring.Controller(controls);
// endregion

import * as express from "express";

const app = express();
const port = 3000;

app.get('/monitoring/:id', Monitoring.control); // route to check controls separately
app.get('/monitoring/full', Monitoring.full); // route to check all controls by one request


app.listen(3000, () => `Monitoring app listening on port ${port}`);

Then you can make request GET http://localhost:3000/monitoring/controlID. For response examples see Documentation.

License

MIT

Keywords

FAQs

Last updated on 20 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc