Welcome to Bug Buster!
Easily monitor, manage, and prioritize your JavaScript anomalies.
npm install @freddsomm/bug-buster
yarn add @freddsomm/bug-buster
pnpm install @freddsomm/bug-buster
const BugBuster = require('@freddsomm/bug-buster');
import { BugBuster } from '@freddsomm/bug-buster';
const bugBuster = new BugBuster({
apiKey: 'YOUR-API-KEY',
projectId: 'clwaoduy20003oiey0jya3p69',
});
try {
throw new Error('Test Error: bad thing happened!');
} catch (error) {
bugBuster.capture(error);
}
For more information, check out the Official Bug Buster Documentation. More documentation will follow.