Ensora
Ensora
DocumentationInstallationBasic Usage

Advanced

Error TrackingPrivacy & Utilities

API Reference

API Reference

Installation

Install and set up the Ensora SDK in minutes

Installation

Install the Ensora SDK and start capturing sessions in minutes.

Installation

npm install @ensora/react-native@latest

Quick Start

Wrap your root layout with EnsoraProvider:

import { EnsoraProvider } from '@ensora/react-native';

export default function RootLayout() {
  return (
    <EnsoraProvider
      apiKey="your_api_key"
      projectId="your_project_id"
    >
      <Stack />
    </EnsoraProvider>
  );
}

That's it. Ensora will automatically capture session start, navigation events (Expo Router), and unhandled errors.

Next Steps

Configure the SDK

Enable touch capture, custom events, and privacy settings

Session Replay

Understand how session recording works

API Reference

Complete SDK documentation

Last updated on

Documentation

Complete guide to the Ensora SDK for React Native and Expo

Basic Usage

Configure the Ensora SDK and track events

On this page

Installation
Installation
Quick Start
Next Steps