All Projects → r-park → Todo Redux Saga

r-park / Todo Redux Saga

Licence: mit
Todo app with Create-React-App • React-Redux • Redux-Saga • Firebase • OAuth

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Todo Redux Saga

React Social Network
Simple React Social Network
Stars: ✭ 409 (+122.28%)
Mutual labels:  create-react-app, firebase, react-redux, redux-saga
Todo React Redux
Todo app with Create-React-App • React-Redux • Firebase • OAuth
Stars: ✭ 942 (+411.96%)
Mutual labels:  create-react-app, firebase, react-router, react-redux
auth-with-saga-example
code for https://medium.com/@stepankuzmin/authentication-with-react-router-redux-5-x-and-redux-saga-55da66b54be7
Stars: ✭ 14 (-92.39%)
Mutual labels:  react-router, redux-saga, react-redux
timeoff-server
TimeOff is an application that allows companies' employees to set vacations before they begin taking their time off. Implemented in modern tech stack i.e. Node, Express, MongoDB.
Stars: ✭ 33 (-82.07%)
Mutual labels:  react-router, redux-saga, react-redux
Road Beyond React App
🌈 The Road beyond React - Thing you can use after learning plain React.js
Stars: ✭ 108 (-41.3%)
Mutual labels:  create-react-app, firebase, react-router
rapid-react
A light weight interactive CLI Automation Tool 🛠️ for rapid scaffolding of tailored React apps with Create React App under the hood.
Stars: ✭ 73 (-60.33%)
Mutual labels:  react-router, redux-saga, react-redux
Youtube React
A Youtube clone built in React, Redux, Redux-saga
Stars: ✭ 421 (+128.8%)
Mutual labels:  create-react-app, react-redux, redux-saga
laravel-react-boilerplate
Laravel React Boilerplate with Ant Design, Route-Level Code Splitting, Redux, Sanctum Auth
Stars: ✭ 49 (-73.37%)
Mutual labels:  react-router, redux-saga, react-redux
Soundcloud Redux
SoundCloud API client with React • Redux • Redux-Saga
Stars: ✭ 681 (+270.11%)
Mutual labels:  react-router, react-redux, redux-saga
Patternfly React Demo App
DEPRECATED: This project is no longer active. See https://github.com/patternfly/patternfly-react-seed for PF4 demos.
Stars: ✭ 26 (-85.87%)
Mutual labels:  create-react-app, react-router, redux-saga
Web
⚡️ Supercharged version of Create React App with all the bells and whistles.
Stars: ✭ 594 (+222.83%)
Mutual labels:  create-react-app, firebase, react-router
React Antd Admin Template
一个基于React+Antd的后台管理模版,在线预览https://nlrx-wjc.github.io/react-antd-admin-template/
Stars: ✭ 1,022 (+455.43%)
Mutual labels:  create-react-app, react-router, react-redux
Create React App Redux
React Router, Redux, Redux Thunk & Create React App boilerplate
Stars: ✭ 885 (+380.98%)
Mutual labels:  create-react-app, react-router, react-redux
React Login
A client side implementation of authentication using react.js for my blog on medium. This is the second part of my previous blog on how to implement scalable node.js server.
Stars: ✭ 105 (-42.93%)
Mutual labels:  react-router, react-redux, redux-saga
React Redux Auth0 Kit
Minimal starter boilerplate project with CRA, React, Redux, React Router and Auth0 authentication
Stars: ✭ 115 (-37.5%)
Mutual labels:  create-react-app, react-router
Enegrecer Web
Verdade Seja Dita!
Stars: ✭ 113 (-38.59%)
Mutual labels:  firebase, redux-saga
React Auth App Example
An app example with authentication using Create React App, React, React Router, Apollo, GraphQL, Redux and Redux Form.
Stars: ✭ 179 (-2.72%)
Mutual labels:  create-react-app, react-router
Cwg React Starter
Pre-configured and Ready to use React Starter App. To save time in settings things up for new project. Almost everything needed is already configured. Just clone and start developing without wasting time in doing same stuffs for every project. (#codewithghazi)
Stars: ✭ 122 (-33.7%)
Mutual labels:  react-router, react-redux
React Mobx Firebase Authentication
🔥Boilerplate Project for Authentication with Firebase in React and MobX
Stars: ✭ 111 (-39.67%)
Mutual labels:  create-react-app, firebase
Reeakt
A modern React boilerplate to awesome web applications
Stars: ✭ 116 (-36.96%)
Mutual labels:  react-router, redux-saga

CircleCI

A simple Todo app example built with Create React App, React Redux, Redux Saga, and Firebase

Try the demo at todo-redux-saga.firebaseapp.com.

Stack

  • Create React App
  • React Redux
  • React Router
  • React Router Redux
  • Redux Saga
  • Redux Devtools Extension for Chrome
  • Firebase SDK with OAuth authentication
  • Immutable
  • Reselect
  • SASS

Quick Start

$ git clone https://github.com/r-park/todo-redux-saga.git
$ cd todo-redux-saga
$ npm install
$ npm start

Deploying to Firebase

Prerequisites:

Configure this app with your project-specific details:

// .firebaserc

{
  "projects": {
    "default": "your-project-id"
  }
}
// src/firebase/config.js

export const firebaseConfig = {
  apiKey: 'your api key',
  authDomain: 'your-project-id.firebaseapp.com',
  databaseURL: 'https://your-project-id.firebaseio.com',
  storageBucket: 'your-project-id.appspot.com'
};

Install firebase-tools:

$ npm install -g firebase-tools

Build and deploy the app:

$ npm run build
$ firebase login
$ firebase use default
$ firebase deploy

NPM Commands

Script Description
npm start Start webpack development server @ localhost:3000
npm run build Build the application to ./build directory
npm test Test the application; watch for changes and retest
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].