
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@pomby/pomby
Advanced tools
Pomby is a simple application monitoring system for your services. Track downtime including error and downtime reports.
Pomby is designed to be a pluggable architecture to allow you to build any type of monitor you need, as well as add pluggable actions on your monitors.
const pomby = require('@pomby/pomby');
const pombySimple = require('@pomby/simplerequest');
pomby({
db: 'mongodb://localhost/pomby',
port: 8087,
development: false,
sessionAge: 24 * 60 * 60 * 1000,
monitorHandlers: [pombySimple],
dataRetention: 7 * 24 * 60 * 60 * 1000, // 1 week
defaultRunSpacing: 1 * 60 * 1000, // 1 min
});
Database conenction string - mongo DB
An array of monitor handlers that you wish to be available.
default: 8080
Required to set the port the application runs on.
default: 30 seconds (also the minimum setting)
This specifies how often the monitors will fun by default.
Runs the project in development mode, live rebuilds of the UI and more debugging output.
Login session age in ms
Time to retrain error logs and per-run spacing logs. Hourly and daily records are stored indefinity.
A quick view to how your monitored applications are doing right now.

Detailed statistics about your monitored application and reporting on that monitored service.

The following are the types of hooks you can use when creating a plugin
onRunComplete(config, monitor, runLog, error, errorDetails) - Hook runs after a run is completed for a monitorComing soon...
FAQs
Pomby service monitor
We found that @pomby/pomby 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.