https://github.com/cellular/jovo-plugin-raven
Jovo plugin to send errors to a sentry server
https://github.com/cellular/jovo-plugin-raven
Last synced: about 1 year ago
JSON representation
Jovo plugin to send errors to a sentry server
- Host: GitHub
- URL: https://github.com/cellular/jovo-plugin-raven
- Owner: cellular
- Created: 2018-06-03T23:12:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-05T14:04:46.000Z (about 8 years ago)
- Last Synced: 2025-02-15T11:19:50.005Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sentry integration for the Jovo Framework
[](https://travis-ci.org/cellular/jovo-plugin-raven)
[Jovo](https://www.jovo.tech/) [Plugin](https://www.jovo.tech/docs/advanced#plugins) that sends errors to a [Sentry](https://github.com/getsentry/sentry) server using [Raven](https://github.com/getsentry/raven-node).
## Usage
```js
const { App } = require('jovo-framework');
const Raven = require('raven');
const RavenPlugin = require('jovo-plugin-raven');
const app = new App();
const dsn = 'https://abc:123@example.com/1';
const opts = {
// see:
// https://docs.sentry.io/clients/node/config/#optional-settings
};
app.register('RavenPlugin', new RavenPlugin(dsn, opts));
```
# License
MIT