7.113.0 • Published 2 days ago

@sentry/bun v7.113.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

Official Sentry SDK for Bun (Beta)

npm version npm dm npm dt

Links

The Sentry Bun SDK is in beta. Please help us improve the SDK by reporting any issues or giving us feedback.

Usage

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

// CJS Syntax
const Sentry = require('@sentry/bun');
// ESM Syntax
import * as Sentry from '@sentry/bun';

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

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

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

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

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

It's not possible to capture unhandled exceptions, unhandled promise rejections now - Bun is working on adding support for it. Github Issue follow this issue. To report errors to Sentry, you have to manually try-catch and call Sentry.captureException in the catch block.

import * as Sentry from '@sentry/bun';

try {
  throw new Error('test');
} catch (e) {
  Sentry.captureException(e);
}
8.0.0-rc.0

3 days ago

8.0.0-rc.1

2 days ago

8.0.0-beta.6

6 days ago

7.113.0

7 days ago

8.0.0-beta.5

9 days ago

7.112.2

15 days ago

8.0.0-beta.4

15 days ago

7.112.0

16 days ago

7.112.1

16 days ago

8.0.0-beta.3

20 days ago

7.111.0

21 days ago

8.0.0-beta.2

22 days ago

8.0.0-beta.1

24 days ago

7.110.1

24 days ago

7.110.0

28 days ago

8.0.0-alpha.9

1 month ago

8.0.0-alpha.8

1 month ago

7.109.0

1 month ago

8.0.0-alpha.7

1 month ago

8.0.0-alpha.5

2 months ago

7.108.0

2 months ago

8.0.0-alpha.4

2 months ago

7.107.0

2 months ago

7.106.1

2 months ago

7.106.0

2 months ago

8.0.0-alpha.2

2 months ago

7.105.0

2 months ago

7.104.0

2 months ago

7.103.0

2 months ago

7.102.1

3 months ago

7.102.0

3 months ago

7.101.1

3 months ago

7.101.0

3 months ago

7.100.1

3 months ago

7.100.0

3 months ago

7.99.0

3 months ago

7.97.0

4 months ago

7.98.0

3 months ago

7.95.0

4 months ago

7.94.1

4 months ago

7.93.0

4 months ago

7.92.0

4 months ago

7.91.0

5 months ago

7.90.0

5 months ago

7.89.0

5 months ago

7.88.0

5 months ago

7.87.0

5 months ago

7.86.0

5 months ago

7.85.0

5 months ago

7.84.0

5 months ago

7.83.0

5 months ago

7.82.0

5 months ago

7.81.1

6 months ago

7.81.0

6 months ago

7.80.2-alpha.1

6 months ago

7.80.2-alpha.0

6 months ago

7.80.1

6 months ago

7.80.0

6 months ago

7.79.0

6 months ago

7.78.0

6 months ago

7.77.0

6 months ago

7.76.0

6 months ago

7.75.1

7 months ago

7.75.0

7 months ago

7.74.2-alpha.1

7 months ago

7.74.1

7 months ago

7.74.0

7 months ago

7.73.0

7 months ago

7.72.0

8 months ago

7.71.0

8 months ago

7.70.0

8 months ago