@faultfixer/sveltekit
v1.0.1
Published
FaultFixer error monitoring SDK for SvelteKit — built on @sentry/sveltekit (MIT).
Maintainers
Readme
@faultfixer/sveltekit
FaultFixer error monitoring for SvelteKit. Drop-in wrapper around the open-source @sentry/sveltekit SDK (MIT) — same battle-tested engine, FaultFixer ingest + AI fix pipeline.
npm i @faultfixer/sveltekit// hooks.client.ts and hooks.server.ts
import * as FaultFixer from "@faultfixer/sveltekit";
FaultFixer.init({ dsn: "<YOUR_DSN>" });
// Framework helpers:
export const handle = FaultFixer.faultfixerHandle();
export const handleError = FaultFixer.handleError();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/sveltekit";
// access framework-specific helpers via Sentry.*Attribution
This package wraps @sentry/sveltekit 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.
