jovo-plugin-raven
v2.0.0
Published
Jovo plugin to report errors via Raven
Downloads
4
Readme
Sentry integration for the Jovo Framework
Jovo Plugin that sends errors to a Sentry server using Raven.
Usage
const { App } = require('jovo-framework');
const Raven = require('raven');
const RavenPlugin = require('jovo-plugin-raven');
const app = new App();
const dsn = 'https://abc:[email protected]/1';
const opts = {
// see:
// https://docs.sentry.io/clients/node/config/#optional-settings
};
app.register('RavenPlugin', new RavenPlugin(dsn, opts));
License
MIT