Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
express-monitoring
Advanced tools
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.
Using NPM:
npm i express-monitoring
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.
FAQs
Express Monitoring
We found that express-monitoring demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.