Skip to content

Quickstart

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

Terminal window
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.