7.113.0 • Published 21 hours ago

@sentry/vercel-edge v7.113.0

Weekly downloads
-
License
MIT
Repository
github
Last release
21 hours ago

Official Sentry SDK for Vercel Edge Runtime ALPHA

npm version npm dm npm dt

Links

Note: This SDK is still in an alpha state. Breaking changes can occur at any time.

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/vercel-edge');
// ESM Syntax
import * as Sentry from '@sentry/vercel-edge';

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

To set context information or send manual events, use the exported functions of @sentry/vercel-edge. 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: [
    // ...
  ],
});
7.113.0

21 hours ago

8.0.0-beta.5

3 days ago

7.112.2

9 days ago

8.0.0-beta.4

9 days ago

7.112.0

10 days ago

7.112.1

10 days ago

8.0.0-beta.3

14 days ago

7.111.0

15 days ago

8.0.0-beta.2

16 days ago

8.0.0-beta.1

18 days ago

7.110.1

18 days ago

7.110.0

22 days ago

8.0.0-alpha.9

25 days ago

8.0.0-alpha.8

25 days ago

7.109.0

1 month ago

8.0.0-alpha.7

1 month ago

8.0.0-alpha.5

1 month ago

7.108.0

1 month ago

8.0.0-alpha.3

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

2 months ago

7.102.0

2 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

3 months ago

7.98.0

3 months ago

7.95.0

3 months ago

7.94.1

3 months ago

7.93.0

4 months ago

7.92.0

4 months ago

7.91.0

4 months ago

7.90.0

4 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

5 months ago

7.81.0

5 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

6 months ago

7.75.0

6 months ago

7.74.2-alpha.1

6 months ago

7.74.2-alpha.0

7 months ago

7.74.1

7 months ago

7.74.0

7 months ago

7.73.0

7 months ago

7.72.0

7 months ago

7.71.0

7 months ago

7.70.0

8 months ago