React Native (Expo) Installation and Setup

Jazz supports Expo through the dedicated jazz-expo package, 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": "~52.0.0", 
"react-native": "0.76.7", 
"react": "18.3.1"

Installation

Create a new project

(Skip this step if you already have one)

npx create-expo-app -e with-router-tailwind my-jazz-app
cd my-jazz-app
npx expo prebuild

Install dependencies

# Expo dependencies
npx expo install expo-linking expo-secure-store expo-file-system @react-native-community/netinfo @bam.tech/react-native-image-resizer

# React Native polyfills
npm i -S @azure/core-asynciterator-polyfill react-native-url-polyfill readable-stream react-native-get-random-values @craftzdog/react-native-buffer

# Jazz dependencies
npm i -S jazz-tools jazz-expo jazz-react-native-media-images

Note: Hermes has added support for atob and btoa in React Native 0.74. If you are using earlier versions, you may also need to polyfill atob and btoa in your package.json. Packages to try include: text-encoding, base-64, and you can drop @bacons/text-decoder.

Fix incompatible dependencies

If you encounter incompatible dependencies, you can try to fix them with the following command:

npx expo install --fix

Configure Metro

Regular repositories

If you are not working within a monorepo, create a new file metro.config.js in the root of your project with the following content:

// metro.config.js
const { const getDefaultConfig: anygetDefaultConfig } = 
var require: NodeRequire
(id: string) => any
require
("expo/metro-config");
const const config: anyconfig = const getDefaultConfig: anygetDefaultConfig(projectRoot); const config: anyconfig.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"]; const config: anyconfig.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/]; var module: NodeModulemodule.NodeJS.Module.exports: anyexports = const config: anyconfig;

Monorepos

For monorepos, use the following metro.config.js:

// metro.config.js
const { const getDefaultConfig: anygetDefaultConfig } = 
var require: NodeRequire
(id: string) => any
require
("expo/metro-config");
const { const FileStore: anyFileStore } =
var require: NodeRequire
(id: string) => any
require
("metro-cache");
const const path: anypath =
var require: NodeRequire
(id: string) => any
require
("path");
// eslint-disable-next-line no-undef const const projectRoot: stringprojectRoot = var __dirname: string__dirname; const const workspaceRoot: anyworkspaceRoot = const path: anypath.resolve(const projectRoot: stringprojectRoot, "../.."); const const config: anyconfig = const getDefaultConfig: anygetDefaultConfig(const projectRoot: stringprojectRoot); const config: anyconfig.watchFolders = [const workspaceRoot: anyworkspaceRoot]; const config: anyconfig.resolver.nodeModulesPaths = [ const path: anypath.resolve(const projectRoot: stringprojectRoot, "node_modules"), const path: anypath.resolve(const workspaceRoot: anyworkspaceRoot, "node_modules"), ]; const config: anyconfig.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"]; const config: anyconfig.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/]; const config: anyconfig.cacheStores = [ new const FileStore: anyFileStore({ root: anyroot: const path: anypath.join(const projectRoot: stringprojectRoot, "node_modules", ".cache", "metro"), }), ]; var module: NodeModulemodule.NodeJS.Module.exports: anyexports = const config: anyconfig;

Additional monorepo configuration (for pnpm)

If you're using pnpm, you'll need to make sure that your expo app's package.json has this:

// package.json
{
  "main": "index.js",
  ...
}

For more information, refer to this Expo monorepo example.

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 Chat Demo for a complete example.

Next Steps

Now that you've set up your Expo project for Jazz, you'll need to:

  1. Set up the Jazz Provider - Configure how your app connects to Jazz
  2. Add authentication (optional) - Enable users to access data across devices
  3. Define your schema - See the schema docs for more information
  4. Run your app:
npx expo run:ios
# or
npx expo run:android

Verification

Ready to see if everything's working? Let's fire up 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 all polyfills are properly imported.
  • iOS build failures: Make sure you've run pod install after adding the dependencies.
  • Android build failures: Ensure you've run npx expo prebuild to 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