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: any
getDefaultConfig } =require("expo/metro-config"); const
var require: NodeRequire (id: string) => any
const config: any
config =const getDefaultConfig: any
getDefaultConfig(projectRoot);const config: any
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];const config: any
config.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/];var module: NodeModule
module.NodeJS.Module.exports: any
exports =const config: any
config;
Monorepos
For monorepos, use the following metro.config.js
:
// metro.config.js const {
const getDefaultConfig: any
getDefaultConfig } =require("expo/metro-config"); const {
var require: NodeRequire (id: string) => any
const FileStore: any
FileStore } =require("metro-cache"); const
var require: NodeRequire (id: string) => any
const path: any
path =require("path"); // eslint-disable-next-line no-undef const
var require: NodeRequire (id: string) => any
const projectRoot: string
projectRoot =var __dirname: string
__dirname; constconst workspaceRoot: any
workspaceRoot =const path: any
path.resolve(const projectRoot: string
projectRoot, "../.."); constconst config: any
config =const getDefaultConfig: any
getDefaultConfig(const projectRoot: string
projectRoot);const config: any
config.watchFolders = [const workspaceRoot: any
workspaceRoot];const config: any
config.resolver.nodeModulesPaths = [const path: any
path.resolve(const projectRoot: string
projectRoot, "node_modules"),const path: any
path.resolve(const workspaceRoot: any
workspaceRoot, "node_modules"), ];const config: any
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];const config: any
config.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/];const config: any
config.cacheStores = [ newconst FileStore: any
FileStore({root: any
root:const path: any
path.join(const projectRoot: string
projectRoot, "node_modules", ".cache", "metro"), }), ];var module: NodeModule
module.NodeJS.Module.exports: any
exports =const config: any
config;
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:
- 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
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