All Projects → n6g7 → Redux Saga Firebase

n6g7 / Redux Saga Firebase

Licence: mit
A redux saga integration for firebase.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Redux Saga Firebase

React Social Network
Simple React Social Network
Stars: ✭ 409 (+46.59%)
Mutual labels:  firebase, redux-saga
Enegrecer Web
Verdade Seja Dita!
Stars: ✭ 113 (-59.5%)
Mutual labels:  firebase, redux-saga
Todo Redux Saga
Todo app with Create-React-App • React-Redux • Redux-Saga • Firebase • OAuth
Stars: ✭ 184 (-34.05%)
Mutual labels:  firebase, redux-saga
react-enterprise-starter-kit
Highly Scalable Awesome React Starter Kit for an enterprise application with a very easy maintainable codebase. 🔥
Stars: ✭ 55 (-80.29%)
Mutual labels:  redux-saga
movies
Real world isomorphic application for movies search, based on Webpack 5 / Express / React 17 + Redux-Saga / Bootstrap 4.6 + CSS Modules / i18next / SSR
Stars: ✭ 20 (-92.83%)
Mutual labels:  redux-saga
Nora
Nora is a Firebase abstraction layer for FirebaseDatabase and FirebaseStorage
Stars: ✭ 270 (-3.23%)
Mutual labels:  firebase
Octopus
🐙 Octopus - Internal wiki with diagrams for software and product teams
Stars: ✭ 274 (-1.79%)
Mutual labels:  firebase
react-redux-crud
An example react-redux-saga CRUD application
Stars: ✭ 47 (-83.15%)
Mutual labels:  redux-saga
Generator React Firebase
React Firebase (Redux optional) yeoman generator
Stars: ✭ 272 (-2.51%)
Mutual labels:  firebase
Aura
GDG/DSCs Community Web App for Management
Stars: ✭ 269 (-3.58%)
Mutual labels:  firebase
Setwithfriends
🎮 A frictionless multiplayer web app that lets you play Set with friends
Stars: ✭ 268 (-3.94%)
Mutual labels:  firebase
interbit
To the end of servers
Stars: ✭ 23 (-91.76%)
Mutual labels:  redux-saga
React Admin Firebase
A firebase data provider for the react-admin framework
Stars: ✭ 269 (-3.58%)
Mutual labels:  firebase
create-react-redux-app
React boilerplate based on create-react-app
Stars: ✭ 49 (-82.44%)
Mutual labels:  redux-saga
Material Kit React
React Dashboard made with Material UI’s components. Our pro template contains features like TypeScript version, authentication system with Firebase and Auth0 plus many other
Stars: ✭ 3,465 (+1141.94%)
Mutual labels:  firebase
MyReads
📚 MyReads is @udacity React Nanodegree Project. This is a book tracking app allows you to select and categorize books you have read, are currently reading, or want to read. The project emphasizes using React to build the application and provides an API server and client library that it should be persisted information as user’s interacts with th…
Stars: ✭ 13 (-95.34%)
Mutual labels:  redux-saga
Nuxt Ssr Firebase
Nuxt.js Universal App with SSR via Firebase Functions and Firebase Hosting
Stars: ✭ 273 (-2.15%)
Mutual labels:  firebase
React Redux Firebase Authentication
🔥Boilerplate Project for Authentication with Firebase in React and Redux
Stars: ✭ 265 (-5.02%)
Mutual labels:  firebase
Pring
Cloud Firestore model framework for iOS - Google
Stars: ✭ 260 (-6.81%)
Mutual labels:  firebase
React Native Navigation Redux Starter Kit
React Native Navigation(v2) Starter Kit with Redux, Saga, ESLint, Babel, Jest and Facebook SDK 😎
Stars: ✭ 271 (-2.87%)
Mutual labels:  redux-saga

redux-saga-firebase

CircleCI npm version Coverage Status

A redux-saga integration for firebase.

Quick start

Install with:

yarn add redux-saga-firebase

Initialize a firebase app and instantiate redux-saga-firebase:

import firebase from 'firebase'
import '@firebase/firestore' // 👈 If you're using firestore
import ReduxSagaFirebase from 'redux-saga-firebase'

const myFirebaseApp = firebase.initializeApp({
  apiKey: 'qosjdqsdkqpdqldkqdkfojqjpfk',
  authDomain: 'my-app.firebaseapp.com',
  databaseURL: 'https://my-app.firebaseio.com',
})

const reduxSagaFirebase = new ReduxSagaFirebase(myFirebaseApp)

You can now use reduxSagaFirebase methods in your sagas:

function* syncSaga() {
  yield fork(reduxSagaFirebase.database.sync, 'todos', {
    successActionCreator: syncTodos,
  })
}

Make sure your client provides a implementation of fetch, either natively or via a polyfill (whatwg-fetch is a pretty good one).

API

Authentication

Database

Firestore

Functions

Messaging

Storage

Contributing

  • Clone
  • Link lib to example site:
    • yarn link in root directory
    • yarn link redux-saga-firebase in example directory
  • Run tests: yarn test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].