- 
                Notifications
    
You must be signed in to change notification settings  - Fork 1
 
Open
Labels
Description
Installation
Add the library
npm install @airbrake/browserConfiguration
(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.