1.0.4 • Published 4 years ago

@vicrab/browser v1.0.4

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
4 years ago

Official Vicrab SDK for Browsers

Usage

To use this SDK, call Vicrab.init(options) as early as possible after loading the page. This will initialize the SDK and hook into the environment. Note that you can turn off almost all side effects using the respective options.

import * as Vicrab from '@vicrab/browser';

vicrab.init({
  dsn: '__DSN__',
  // ...
});

To set context information or send manual events, use the exported functions of @vicrab/browser. Note that these functions will not perform any action before you have called Vicrab.init():

import * as Vicrab from '@vicrab/browser';

// Set user information, as well as tags and further extras
Vicrab.configureScope(scope => {
  scope.setExtra('battery', 0.7);
  scope.setTag('user_mode', 'admin');
  scope.setUser({ id: '4711' });
  // scope.clear();
});

// Add a breadcrumb for future events
Vicrab.addBreadcrumb({
  message: 'My Breadcrumb',
  // ...
});

// Capture exceptions, messages or manual events
Vicrab.captureMessage('Hello, world!');
Vicrab.captureException(new Error('Good bye'));
Vicrab.captureEvent({
  message: 'Manual',
  stacktrace: [
    // ...
  ],
});
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

5.12.1

4 years ago