@faultfixer/aws-serverless
v1.0.0
Published
FaultFixer error monitoring SDK for AWS Lambda — built on @sentry/aws-serverless (MIT).
Maintainers
Readme
@faultfixer/aws-serverless
FaultFixer error monitoring for AWS Lambda. Drop-in wrapper around the open-source @sentry/aws-serverless SDK (MIT) — same battle-tested engine, FaultFixer ingest + AI fix pipeline.
npm i @faultfixer/aws-serverlessimport * as FaultFixer from "@faultfixer/aws-serverless";
FaultFixer.init({ dsn: "<YOUR_DSN>" });
// Wrap your handler for automatic instrumentation:
export const handler = FaultFixer._underlying.wrapHandler(async (event) => {
/* your lambda */
});Errors arrive in your FaultFixer dashboard, 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.
For any helper not aliased here, use the escape hatch:
import { _underlying as Sentry } from "@faultfixer/aws-serverless";
// access framework-specific helpers via Sentry.*Attribution
This package wraps @sentry/aws-serverless 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.
