Time to value: 2 mins
The Happy Path
Integrate BugOracle V3 into your Next.js application and generate your first BugBundle locally or in production.
1
1. Install the SDK
Add the BugOracle browser client to your project.
npm install @bugoracle/browser2
2. Initialize
Configure the SDK in your root layout or entry point.
import { BugOracle } from '@bugoracle/browser';
BugOracle.init({
apiKey: 'your_sdk_key_here',
environment: 'production',
replayEnabled: true,
otlpEnabled: true
});3
3. Trigger a Test
Call a test error to verify connectivity to the Ingest Plane.
BugOracle.captureException(new Error('Test BugBundle Connection'));What happens next?
Once the SDK is live, any crash will automatically bundle its context and appear in your dashboard. Hawk.AI will then begin analysis.
View Full SDK Docs