
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.
@errpulse/node
Advanced tools
Backend error monitoring SDK for Node.js, Express, and Next.js. Part of ErrPulse — the error monitoring tool that runs with one command.
npm install @errpulse/node
// Zero-config — auto-captures uncaught exceptions, rejections, console.error
import "@errpulse/node";
That's it. Errors are sent to http://localhost:3800 by default.
import express from "express";
import { init, expressRequestHandler, expressErrorHandler } from "@errpulse/node";
init({ serverUrl: "http://localhost:3800", projectId: "my-api" });
const app = express();
app.use(expressRequestHandler()); // Track all requests — add first
// ... your routes ...
app.use(expressErrorHandler()); // Catch route errors — add last
import { withErrPulse } from "@errpulse/node";
export const GET = withErrPulse(async (req) => {
const data = await db.query();
return Response.json({ data });
});
import { captureError, captureMessage } from "@errpulse/node";
captureError(new Error("Payment failed"), { userId: "123" });
captureMessage("Deployment started", "info", { version: "2.0" });
| Error Type | How |
|---|---|
| Uncaught exceptions | process.on('uncaughtException') |
| Unhandled promise rejections | process.on('unhandledRejection') |
| Express route errors | Error handler middleware |
| Next.js API route errors | withErrPulse() wrapper |
console.error calls | Monkey-patch |
| Memory warnings | Periodic process.memoryUsage() check |
| All HTTP requests | Request handler middleware |
import { init } from "@errpulse/node";
init({
serverUrl: "http://localhost:3800",
projectId: "my-api",
enabled: true,
sampleRate: 1.0,
captureConsoleErrors: true,
captureUncaughtExceptions: true,
captureUnhandledRejections: true,
monitorMemory: true,
memoryThresholdMB: 512,
beforeSend: (event) => event, // Modify or drop events
});
FAQs
ErrPulse Node.js backend SDK — catch every backend error automatically
We found that @errpulse/node demonstrated a healthy version release cadence and project activity because the last version was released less than 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.