1.0.2-alpha.0 • Published 5 years ago

@beidou1/minimal v1.0.2-alpha.0

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

Beidou JavaScript SDK Minimal

npm version npm dm npm dt typedoc

Links

General

A minimal Beidou SDK that uses a configured client when embedded into an application. It allows library authors add support for a Beidou SDK without having to bundle the entire SDK or being dependent on a specific platform. If the user is using Beidou in their application and your library uses @beidou/minimal, the user receives all breadcrumbs/messages/events you added to your libraries codebase.

Usage

To use the minimal, you do not have to initialize an SDK. This should be handled by the user of your library. Instead, directly use the exported functions of @beidou/minimal to add breadcrumbs or capture events:

import * as Beidou from '@beidou/minimal';

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

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

Note that while strictly possible, it is discouraged to interfere with the event context. If for some reason your library needs to inject context information, beware that this might override the user's context values:

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