> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/ailtonvivaz/react-native-beagle/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install React Native Beagle in your React Native project using npm, yarn, or pnpm.

# Installation

Get started with React Native Beagle by installing it in your React Native project.

## Install the Package

Choose your preferred package manager to install React Native Beagle:

<CodeGroup>
  ```bash npm theme={null}
  npm install react-native-beagle
  ```

  ```bash yarn theme={null}
  yarn add react-native-beagle
  ```

  ```bash pnpm theme={null}
  pnpm add react-native-beagle
  ```
</CodeGroup>

## Peer Dependencies

React Native Beagle requires the following peer dependencies:

* `react`: Any version
* `react-native`: Any version

These are already part of your React Native project, so no additional installation is needed.

<Note>
  React Native Beagle has **zero external dependencies**, making it lightweight and easy to integrate without worrying about version conflicts.
</Note>

## Platform Setup

React Native Beagle works out of the box on both iOS and Android platforms. No additional native configuration is required.

### iOS

No additional setup needed. The package works with any React Native version.

### Android

No additional setup needed. The package works with any React Native version.

## Verify Installation

After installation, verify that the package is properly installed by checking your `package.json`:

```json theme={null}
{
  "dependencies": {
    "react-native-beagle": "^0.1.5"
  }
}
```

## Next Steps

<Card title="Quick Start" icon="rocket" href="/quickstart">
  Learn how to set up Beagle in your app and start logging
</Card>
