@expo/sentry-utils

0.4.0 • Public • Published

Expo Sentry Utilities

This package performs two main functions:

  • Provides ExpoSentryClient, which allows an application to easily set itself up to send any uncaught errors to Sentry (https://getsentry.com).
  • Provides a script -- publish-sentry-release -- that will fetch the current JavaScript bundle and source map for an Expo experience from XDE or exp, and upload those artifacts to Sentry to allow for symbolication of crash reports.

Sentry Client

Set up the client as follows during the initialization of your app:

ExpoSentryClient.setupSentry([SENTRY DSN], [RELEASE], [EXPERIENCE ENTRY FILE])

A good place to do this is in the constructor of your root component. RELEASE should be a version number or Git commit SHA that identifies a new Sentry release.

Example usage:

const packageJSON = require('./package.json');
ExpoSentryClient.setupSentry(
  `https://[api key here]@app.getsentry.com/[project id]`,
  packageJSON.version,
  packageJSON.main,
);

Before using this for the first time you will need to publish at least one release as shown below.

"Publish Sentry Release" Script

To upload a new release:

publish-sentry-release \
  --platform [ios|android] \
  --team [SENTRY TEAM] \
  --project [SENTRY PROJECT] \
  --auth-token [SENTRY AUTH TOKEN]

Find out about your Sentry auth token on this page.

You'll be prompted for your XDE port -- this can be found in XDE in the project URL display.

In addition, the script will ask you if you want to bump the version of your project (the version specified in your package.json). This is optional - but if you don't bump the version and there is an existing Sentry release with the same version number, the artifacts associated with that version will be overridden.

Package Sidebar

Install

npm i @expo/sentry-utils

Weekly Downloads

1

Version

0.4.0

License

MIT

Last publish

Collaborators

  • schestakov
  • janicduplessis
  • wkozyra
  • barthec
  • quinlanj
  • sjchmiela
  • tsapeta
  • dsokal
  • esamelson
  • expoadmin
  • ide
  • brentvatne
  • nikki93
  • ccheever
  • terribleben
  • jesseruder
  • fson
  • evanbacon