React Native (Expo) Installation and Setup
Jazz supports Expo through the dedicated jazz-tools/expo entry, which is specifically designed for Expo applications. If you're building for React Native without Expo, please refer to the React Native guide instead.
Jazz requires an Expo development build using Expo Prebuild for native code. It is not compatible with Expo Go. Jazz also supports the New Architecture.
Tested with:
"expo": "~53.0.0", "react-native": "0.79.2", "react": "18.3.1"
Installation
Create a new project
(Skip this step if you already have one)
npx create-expo-app my-jazz-app cd my-jazz-app npx expo prebuild
Install dependencies
# Expo dependencies npx expo install expo-linking expo-secure-store expo-sqlite expo-file-system @react-native-community/netinfo expo-image-manipulator # React Native polyfills npm install @azure/core-asynciterator-polyfill react-native-url-polyfill readable-stream react-native-get-random-values react-native-fast-encoder # Jazz dependencies npm install jazz-tools
Requires at least Node.js v20. See our Troubleshooting Guide for quick fixes.
Fix incompatible dependencies
If you encounter incompatible dependencies, you can try to fix them with the following command:
npx expo install --fix
Add polyfills
Jazz provides a quick way for you to apply the polyfills in your project. Import them in your root _layout.tsx component:
import "jazz-tools/expo/polyfills"; import { DarkTheme, DefaultTheme, ThemeProvider, } from "@react-navigation/native"; // ...
Authentication
Jazz provides authentication to help users access their data across multiple devices. For details on implementing authentication with Expo, check our Authentication Overview guide and see the Expo Clerk Demo for a complete example.
Next Steps
Now that you've set up your Expo project for Jazz, you'll need to:
- Set up the Jazz Provider - Configure how your app connects to Jazz
- Add authentication (optional) - Enable users to access data across devices
- Define your schema - See the schema docs for more information
- Run your app:
npx expo run:ios # or npx expo run:android
If all goes well, your app should start up without any angry red error screens. Take a quick look at the Metro console too - no Jazz-related errors there means you're all set! If you see your app's UI come up smoothly, you've nailed the installation.
If you run into any issues that aren't covered in the Common Issues section, drop by our Discord for help.
Common Issues
- Metro bundler errors: If you see errors about missing polyfills, ensure you installed them all and are importing them correctly
- iOS build failures: Make sure you've run
pod installafter adding the dependencies. - Android build failures: Ensure you've run
npx expo prebuildto generate native code. - Expo Go incompatibility: Remember that Jazz requires a development build and won't work with Expo Go.
Install CocoaPods
If you're compiling for iOS, you'll need to install CocoaPods for your project. If you need to install it, we recommend using pod-install:
npx pod-install