
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@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
The npm package @errpulse/node receives a total of 16 weekly downloads. As such, @errpulse/node popularity was classified as not popular.
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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.