Installation
Add the library
npm install @airbrake/browser
Configuration
(You can find your project ID and API key in your project's settings)
import { Notifier } from '@airbrake/browser';
const airbrake = new Notifier({
projectId: <Your project ID>,
projectKey: '<Your project API Key>',
environment: 'production'
});
To test that Airbrake has been installed correctly in your project, open up the JavaScript console in your browser and paste in:
window.onerror("TestError: This is a test", "path/to/file.js", 123);
Full documentation
Visit our official GitHub repo for more info on alternative configurations and advanced options.
Installation
Add the library
Configuration
(You can find your project ID and API key in your project's settings)
To test that Airbrake has been installed correctly in your project, open up the JavaScript console in your browser and paste in:
Full documentation
Visit our official GitHub repo for more info on alternative configurations and advanced options.