Setup Airbrake for your JavaScript application
Jetcorp public transportation service
Brought to you by:
kosasih
Originally created by: KOSASIH
Add the library
npm install @airbrake/browser
(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, start up
your JS project locally. Then visit it in your browser (eg:
http://localhost:1080), open the JS console, and paste in the following to
trigger a test error:
window.onerror("TestError: This is a test", "path/to/file.js", 123);
This should send a test error to your Airbrake project.
Visit our official GitHub repo for more info on alternative configurations and advanced options.