vikidi / Homepages

My personal home page - React front and NodeJS back.
MIT License
0 stars 0 forks source link

Setup Airbrake for your JavaScript application #122

Open vikidi opened 3 years ago

vikidi commented 3 years ago

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.

vikidi commented 3 years ago

Need to be added to backend logger and env variables to server conf