JSPM

@sentry/browser

0.4.0-beta.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7740493
  • Score
    100M100P100Q220354F
  • License MIT

Offical Sentry SDK for browsers

Package Exports

  • @sentry/browser

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@sentry/browser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


Sentry Browser SDK Package

npm version npm dm npm dt

General

This package is meant to be used with the Core SDK package.

Usage

First you have to create the core and use a corresponding SDK.

import * as Sentry from '@sentry/core';
import { SentryBrowser } from '@sentry/Sentrybrowser';

Sentry.create('__DSN__')
  .use(SentryBrowser)
  .install();

After that you can call function on the global sharedClient:

Sentry.getSharedClient().setTagsContext({ cordova: true });
Sentry.getSharedClient().captureMessage('test message');
Sentry.getSharedClient().captureBreadcrumb({ message: 'HOHOHOHO' });
Sentry.getSharedClient().captureException(new Error('error'));

If you don't want to use a global static instance of Sentry, you can create one on your own:

const client = await new Sentry.Client(dsn).use(MockAdapter).install()
client.setTagsContext({ cordova: true });
client.captureMessage('test message');
client.captureBreadcrumb({ message: 'HOHOHOHO' });

// OR

new Sentry.Client('__DSN__')
  .use(MockAdapter)
  .install()
  .then(client => {
    client.setTagsContext({ cordova: true });
    client.captureMessage('test message');
    client.captureBreadcrumb({ message: 'HOHOHOHO' });
  });

Notice, install() is a Promise but we internally wait until it is resolved, so it is save to call other function without waiting for it.