App
@react-native-firebase/app
A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto
React Native Libraries
react
admob
auth
config
digits
fabric
functions
phone-auth
sms
firestore
Stars
1
Weekly
0
Open issues
0
Bundle
~60 kB
Installation
npm install @react-native-firebase/appCode example
import { View, Text, StyleSheet } from "react-native";
import { App } from "@react-native-firebase/app";
export function Example() {
return (
<View style={styles.box}>
<Text style={styles.title}>App</Text>
<App />
</View>
);
}
const styles = StyleSheet.create({
box: { flex: 1, alignItems: "center", justifyContent: "center", gap: 8 },
title: { fontSize: 18, fontWeight: "600" },
});Pros & cons
Pros
- Actively maintained by Invertase
- 0 weekly downloads. Battle tested
- First-class TypeScript definitions
- Apache-2.0 licensed
Considerations
- Adds roughly ~60 kB to your bundle
- Needs client-only rendering in SSR frameworks
- 0 open issues on GitHub