@faultfixer/cloudflare
v1.0.0
Published
FaultFixer error monitoring SDK for Cloudflare Workers — built on @sentry/cloudflare (MIT).
Maintainers
Readme
@faultfixer/cloudflare
FaultFixer error monitoring for Cloudflare Workers. Drop-in wrapper around the open-source @sentry/cloudflare SDK (MIT).
npm i @faultfixer/cloudflareimport { withFaultFixer, captureException } from "@faultfixer/cloudflare";
export default withFaultFixer(
{ dsn: "<YOUR_DSN>" },
{
async fetch(req, env, ctx) {
try {
// your worker
} catch (err) {
captureException(err);
throw err;
}
},
},
);Errors arrive in your FaultFixer dashboard tagged as backend, AI-triaged for noise/severity, with a root-cause hypothesis and a ready-to-apply fix.
Attribution
Wraps @sentry/cloudflare under the MIT License. See NOTICE.md. Not affiliated with Sentry.
