@faultfixer/node
v1.0.0
Published
FaultFixer error monitoring SDK for Node.js — built on @sentry/node (MIT).
Maintainers
Readme
@faultfixer/node
FaultFixer error monitoring for Node.js. Drop-in wrapper around the open-source @sentry/node SDK (MIT) — same battle-tested capture engine, FaultFixer ingest + AI fix pipeline.
npm i @faultfixer/nodeimport * as FaultFixer from "@faultfixer/node";
FaultFixer.init({ dsn: "<YOUR_DSN>" });
// In your error paths:
try {
// ...
} catch (err) {
FaultFixer.captureException(err);
throw err;
}Errors arrive in your FaultFixer dashboard automatically tagged as backend, AI-triaged for noise/severity, with a root-cause hypothesis and a ready-to-apply fix that any AI coding agent (Claude Code, Cursor) can act on via MCP.
Attribution
This package wraps @sentry/node under the MIT License. See NOTICE.md for the full upstream copyright. The "Sentry" name is a trademark of Functional Software, Inc.; this package is not affiliated with Sentry.
