Skip to content

inthepocket/jovo-plugin-sentry

 
 

Repository files navigation

Installation

$ npm install jovo-plugin-sentry --save

In your Jovo project:

// src/app.ts
import { SentryErrorPlugin } from 'jovo-plugin-sentry';


app.use(
	// other plugins, platforms, etc.
	new  SentryErrorPlugin()
);

Customize

NOTE: The dsn is a required parameter

You can use the config.ts file to add the changes in the following format:

const config = {
    plugin: {
        SentryErrorPlugin: {
            dsn: '<YOUR_DSN_HERE>'
        }
    }
};

export = config;

License

Apache-2.0

About

Logs errors of your Jovo application to Sentry

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%