sentry-electron-opt-out
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

sentry-electron-opt-out

A means of opting-out of error reporting from any process

Automated client side error reporting is a great way to fix issues without intervention from users. Some users still insist on opting-out of this 🤷.

Example usage

Run the following code in both Electron processes:

const Sentry = require('@sentry/electron');
const { ElectronOptOut } = require('sentry-electron-opt-out');
 
Sentry.init({
  dsn: '__YOUR_DSN__',
  integrations: integrations => [...integrations, new ElectronOptOut()],
});

To query or change the state of error reporting, use the following code in any Electron process:

const { isEnabled, setEnabled } = require('sentry-electron-opt-out');
 
// Check if reporting is enabled
const reportingEnabled = await isEnabled();
 
// Disable error reporting
await setEnabled(false);

You can optionally pass a function which can force error reporting to be enabled. Perhaps this is a pre-requisite to using pre-release versions of you app?

// constructor(forceEnabled?: () => Promise<boolean>) {
 
// Example
const { app } = require('electron');
 
Sentry.init({
  dsn: '__YOUR_DSN__',
  integrations: integrations => [
    ...integrations,
    new ElectronOptOut(async () => {
      const version = app.getVersion();
      return version.includes('beta') || version.includes('alpha');
    }),
  ],
});

Readme

Keywords

none

Package Sidebar

Install

npm i sentry-electron-opt-out

Weekly Downloads

1

Version

0.2.0

License

MIT

Unpacked Size

7.78 kB

Total Files

16

Last publish

Collaborators

  • timfish