
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
expo-firebase-firestore
Advanced tools
expo-firebase-firestore provides a json based cloud data store that is synchronized in real-time.
Now, you need to install the package from npm registry.
npm install expo-firebase-firestore or yarn add expo-firebase-firestore
If you're using Cocoapods, add the dependency to your Podfile:
pod 'EXFirebaseFirestore', path: '../node_modules/expo-firebase-firestore/ios'
and run pod install.
You could also choose install this module manually.
Libraries ➜ Add Files to [your project's name]node_modules ➜ expo-firebase-firestore and add EXFirebaseFirestore.xcodeprojlibEXFirebaseFirestore.a to your project's Build Phases ➜ Link Binary With LibrariesCmd+R).Append the following lines to android/settings.gradle:
include ':expo-firebase-firestore'
project(':expo-firebase-firestore').projectDir = new File(rootProject.projectDir, '../node_modules/expo-firebase-firestore/android')
and if not already included
include ':expo-core'
project(':expo-core').projectDir = new File(rootProject.projectDir, '../node_modules/expo-core/android')
include ':expo-firebase-app'
project(':expo-firebase-app').projectDir = new File(rootProject.projectDir, '../node_modules/expo-firebase-app/android')
Insert the following lines inside the dependencies block in android/app/build.gradle:
api project(':expo-firebase-firestore')
and if not already included
api project(':expo-core')
api project(':expo-firebase-app')
Include the module in your expo packages: ./android/app/src/main/java/host/exp/exponent/MainActivity.java
/*
* At the top of the file.
* This is automatically imported with Android Studio, but if you are in any other editor you will need to manually import the module.
*/
import expo.modules.firebase.app.FirebaseAppPackage; // This should be here for all Expo Firebase features.
import expo.modules.firebase.firestore.FirebaseFirestorePackage;
// Later in the file...
@Override
public List<Package> expoPackages() {
// Here you can add your own packages.
return Arrays.<Package>asList(
new FirebaseAppPackage(), // This should be here for all Expo Firebase features.
new FirebaseFirestorePackage() // Include this.
);
}
import React from 'react';
import { Text, FlatList } from 'react-native';
import firebase from 'expo-firebase-app';
// Include the module before using it.
import 'expo-firebase-firestore';
// API can be accessed with: firebase.firestore();
export default class WheatView extends React.Component {
ref = firebase.firestore().collection('posts');
state = { posts: [], loading: false };
componentDidMount() {
this.unsubscribe = this.ref.onSnapshot(this.onCollectionUpdate);
}
onCollectionUpdate = querySnapshot => {
const posts = [];
querySnapshot.forEach(doc => {
const { title, complete } = doc.data();
posts.push({
key: doc.id,
doc, // DocumentSnapshot
title,
complete,
});
});
this.setState({
posts,
loading: false,
});
};
componentWillUnmount() {
this.unsubscribe();
}
renderItem = ({ item }) => <Text onPress={() => this.toggle(item)}>{item.title}</Text>;
toggle = ({ doc, complete }) => {
doc.ref.update({ complete: !complete });
};
post = ({ title }) => {
this.ref.add({
title,
complete: false,
});
};
render() {
return <FlatList data={this.state.posts} renderItem={this.renderItem} />;
}
}
FAQs
Expo Unimodule for interfacing with Firebase Cloud Firestore
We found that expo-firebase-firestore demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.