Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

react-native-firebase vs react-redux-firebase?

Background: I have started using react-native-firebase with react-native to integrate with Cloud Firestore. I'm going to start bringing redux into my test application.

Question - Is react-native-firebase ok to continue with as my choice of libraries here? (versus migrating to react-redux-firebase)

Is there an easy way to sum up the difference between the two libraries re when you would you one versus the other? I note with react-native-firebase the installation is quite involved for IOS and Android, so I'm not sure whether react-redux-firebase makes this easier, but if it does do you lose anything in mix?

like image 427
Greg Avatar asked Dec 01 '17 20:12

Greg


People also ask

Should I use Firebase or React Native Firebase?

Firebase has a broader approval, being mentioned in 1215 company stacks & 4651 developers stacks; compared to React Native Firebase, which is listed in 8 company stacks and 18 developer stacks.

Is Firebase good for React Native?

Firebase is a Backend as a Service (BaaS) that provides an advantage to mobile developers who use React Native for developing mobile applications. As a React Native developer, by using Firebase you can start building an MVP (minimum viable product), keeping the costs low and prototyping the application pretty fast.

What is redux Firebase?

Editor's Note: This article was updated on 20 November 2021 to include information on Redux Toolkit. Firebase is a popular BaaS (backend-as-a-service), which allows web and mobile developers to implement common backend tasks like user authentication, storage, and creating databases.

Can I use RTK query with Firebase?

Yes, instead of writing RTK Query endpoints with a query property, you would write them with a queryFn instead and use fakeBaseQuery instead of fetchBaseQuery . Thanks for this information.


2 Answers

Main difference:

  • react-redux-firebase - for using Firebase with Redux
  • react-native-firebase - for using Firebase JS API with react-native

react-redux-firebase actually supports using react-native-firebase. react-native-firebase provides the Firebase JS API while using native-modules under the hood, meaning you can provide that as your Firebase instance to react-redux-firebase like so:

import { compose, createStore } from 'redux';
import RNFirebase from 'react-native-firebase';
import { getFirebase, reactReduxFirebase } from 'react-redux-firebase';
import thunk from 'redux-thunk';
import makeRootReducer from './reducers';

const reactNativeFirebaseConfig = {
  debug: true
};

const reduxFirebaseConfig = {
  userProfile: 'users', // save users profiles to 'users' collection
};

export default (initialState = { firebase: {} }) => {
  // initialize firebase
  const firebase = RNFirebase.initializeApp(reactNativeFirebaseConfig);

  const store = createStore(
    makeRootReducer(),
    initialState,
    compose(
      reactReduxFirebase(firebase, reduxFirebaseConfig), // pass initialized react-native-firebase app instance
     // applyMiddleware can be placed here
    )
  );

  return store;
};

This setup and more is covered in the react-native recipes section of the docs.

Disclaimer: I am one of the authors of react-redux-firebase

like image 104
Scott Avatar answered Nov 11 '22 01:11

Scott


react-redux-firebase is helper library for firebase. I recommended using both react-native-firebase and react-redux-firebase.

react-native-firebase is easy to write, easy to read, easy to understand. You don't need react-redux-firebase for the small application.

react-native-firebase is awesome.

If you are familiar with firebase, You can use react-native-firebase in 10 minutes.

For example

import Firebase from "react-native-firebase"

....

<Button title="button" onPress={Firebase.analytics().logEvent("pressed")} />
like image 26
sonicmario Avatar answered Nov 11 '22 01:11

sonicmario