🔥 A well tested feature rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for over 15 Firebase services. https://invertase.io/oss/react-native-firebase
Go to file
Chris Bianca 44b72f0ef6 [docs] Update how version table is structured 2017-10-03 16:21:18 +01:00
.github Update ISSUE_TEMPLATE.md 2017-08-30 18:13:47 +01:00
android [android] Remove backwards compatibility for 0.47.0 2017-10-03 16:02:41 +01:00
bin [tests] move test scripts into js (bin folder) - now works cross platform 2017-09-25 11:32:18 +01:00
docs [docs] Update how version table is structured 2017-10-03 16:21:18 +01:00
example/demo Include google-services.json 2017-07-05 10:07:07 -04:00
ios Merge commit '74283c5e39225a89386b833ba24a4cfddacb8c16' 2017-10-03 15:44:10 +01:00
lib Merge commit '0470f4f4fcf74407ad1e070091c4a542dc8378a5' 2017-10-03 15:34:08 +01:00
tests Re-run react-native link to check all packages are installed correctly 2017-10-03 16:02:13 +01:00
.babelrc base project files 2017-02-14 16:02:54 +00:00
.editorconfig base project files 2017-02-14 16:02:54 +00:00
.eslintrc android/js: cleanup / remove redundant code 2017-03-10 18:12:46 +00:00
.flowconfig [js][database] fix OnDisconnect incorrectly being constructed + added misc typings 2017-09-07 16:36:47 +01:00
.gitignore Update gitignore 2017-07-05 09:55:23 -04:00
.npmignore updated .npmignore 2017-09-25 11:33:51 +01:00
.watchmanconfig js: snapshot class incorrectly defining 'exists' as a bool prop, instead of a function 2017-03-09 15:27:49 +00:00
LICENSE Switch license to Apache License 2.0 2017-08-18 11:58:07 +01:00
README.md [docs] Update how version table is structured 2017-10-03 16:21:18 +01:00
RNFirebase.podspec [ios] update RNFirebase.podspec 2017-08-18 11:46:55 +01:00
React-Native-Firebase.svg added logo svg 2017-03-24 02:56:28 +00:00
buddybuild_postclone.sh [build/ci] misc 2017-06-22 14:43:36 +01:00
index.d.ts misc typings linting 2017-09-29 11:35:20 +01:00
index.js [admob][android] WIP Basic view 2017-05-25 17:00:53 +01:00
package-lock.json Bump flow-bin version to stop it hammering my Mac! 2017-09-28 15:49:22 +01:00
package.json [docs] Add firestore to the keywords 2017-10-03 16:04:36 +01:00

README.md

React Native Firebase

npm version NPM downloads Package Quality Chat Donate Twitter Follow

RNFirebase makes using Firebase with React Native simple.


Current Docs | @next Docs | iOS Install Guide | Android Install Guide | FAQs | Feature Requests


Install

npm i react-native-firebase --save

Why

RNFirebase is a light-weight layer sitting on-top of the native Firebase libraries for both iOS and Android which mirrors the Firebase Web SDK as closely as possible.

Although the Firebase Web SDK library will work with React Native, it is mainly built for the web.

RNFirebase provides a JavaScript bridge to the native Firebase SDKs for both iOS and Android therefore Firebase will run on the native thread, allowing the rest of your app to run on the JS thread. The Firebase Web SDK also runs on the JS thread, therefore potentially affecting the frame rate causing jank with animations, touch events etc.

The native SDKs also allow us to hook into device sdk's which are not possible with the web SDK, for example crash reporting, offline realtime database support, analytics and more!

All in all, RNFirebase provides much faster performance (~2x) over the web SDK and provides device sdk's not found in the web sdk (see the feature table below).


Supported Firebase Features

The Web SDK column indicates what modules/functionality from the Web SDK are usable within React Native.

'?' indicates partial support

Firebase Features v1.x.x v2.x.x v3.x.x Web SDK
AdMob
Analytics            
App Indexing          
Authentication
-- Phone Auth
Core ?
-- Multiple Apps
Cloud Messaging (FCM) ?
Crash Reporting
Dynamic Links
Firestore
Invites
Performance Monitoring
Realtime Database
-- Offline Persistence ?
-- Transactions
Remote Config
Storage ?

Supported versions - React Native / Firebase

The table below shows the supported versions of React Native and the Firebase SDKs for different versions of react-native-firebase

1.X.X 2.0.X 2.1.X 3.0.X
React Native 0.36 - 0.39 0.40 - 0.46 0.47 + 0.48 +
Firebase Android SDK 10.2.0 + 11.0.0 + 11.0.0 + 11.3.0 +
Firebase iOS SDK 3.15.0 + 4.0.0 + 4.0.0 + 4.2.0 +

License