Skip to content

Quickstart

Pionne is a mobile-first mini-Sentry for React Native + Expo. This guide takes you from an empty project to your first captured crash in under 5 minutes.

PionneSentry
TargetReact Native + ExpoMulti-platform
Pricing€9.99/month (50k events)From €26/month
Trial30 days freeFree quota
DashboardNative mobile appWeb
Source mapsAuto via EASManual or CLI
Bundle ID pinningYes (anti-token theft)No
Fenêtre de terminal
npm install @pionne/react-native

Open the Pionne mobile app, sign in, then + New project to generate a pio_live_… token.

import { Pionne } from '@pionne/react-native';
Pionne.init({ token: 'pio_live_xxx' });
// All JS exceptions, unhandled rejections,
// console + fetch breadcrumbs are captured automatically.

Trigger a test exception:

Pionne.captureException(new Error('Test from quickstart'));

Open the Pionne mobile app — your event should appear within a few seconds.