simudream / react-firebase-starter

Boilerplate (seed) project for creating web apps with React.js, Firebase and GraphQL

Home Page:https://firebase.reactstarter.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Starter Kit   for Firebase   Build Status Twitter

React Starter Kit for Firebase is a popular project template (aka, boilerplate) for building modern, scalable web applications with React.js, GraphQL, and GraphQL using serverless infrastructure provided by Firebase (Cloud Functions, hosting, CDN, authentication, etc.). It allows you to save time and build upon a solid foundation and design patterns.

View online demo  |  Follow us on Twitter  |  Get FREE support on Telegram  |  Visit our sponsors:


This project was bootstraped with React Starter Kit for Firebase by Kriasoft.

Tech Stack

Also, you need to be familiar with HTML, CSS, JavaScript (ES2015) and React.

Directory Layout

├── build/                         # Compiled output
├── node_modules/                  # 3rd-party libraries and utilities
├── public/                        # Static files such as favicon.ico etc.
├── src/                           # Application source code
│   ├── account/                   # User account (settings, profile, etc)
│   ├── admin/                     # Admin dashboard
│   ├── components/                # Shared React components
│   ├── graphql/                   # GraphQL API endpoint
│   ├── news/                      # News section (example)
│   ├── pages/                     # Static pages (landing, about, privacy etc.)
│   ├── templates/                 # HTML templates for server-side rendering
│   ├── app.browser.js             # Client-side rendering, e.g. ReactDOM.render(<App />, container)
│   ├── app.node.js                # Server-side rendering, e.g. ReactDOMServer.renderToString(<App />)
│   ├── auth.js                    # Authentication manager
│   ├── createRelay.browser.js     # Relay factory method for browser envrironment
│   ├── createRelay.node.js        # Relay factory method for Node.js envrironment
│   ├── router.js                  # Universal application router
│   ├── graphql.schema             # GraphQL schema (auto-generated, used by Relay)
│   ├── server.json                # Node.js entry point
│   ├── serviceWorker.js           # Service worker helper methods
│   ├── ssr.js                     # Express.js middleware for server-side rendering
│   └── theme.js                   # Overrides for Material UI default styles
├── .env                           # Environment variables
├── override.js                    # Configuration overrides for Babel and Webpack
└── package.json                   # The list of project dependencies + NPM scripts

Prerequisites

Getting Started

Just clone the repo, update environment variables in .env, and start hacking:

$ git clone https://github.com/kriasoft/react-firebase-starter.git MyApp
$ cd MyApp
$ yarn install                     # Install project dependencies listed in package.json
$ yarn relay                       # Compile GraphQL queries
$ yarn start                       # Compile the app and opens it in a browser with "live reload"

Then open http://localhost:3000/ to see your app.

npm start

How to Test

$ yarn lint                        # Check JavaScript and CSS code for potential issues
$ yarn fix                         # Attempt to automatically fix ESLint warnings
$ yarn test                        # Run unit tests. Or, `yarn test -- --watch`

How to Deploy

Set Firebase project IDs for production and development environments in .firebaserc file, then:

$ yarn deploy                      # Build the app and deploy to development environment
$ yarn deploy-prod                 # Build the app and deploy to production

How to Update

If you keep the original Git history after cloning this repo, you can always fetch and merge the recent updates back into your project by running:

git remote add react-firebase-starter https://github.com/kriasoft/react-firebase-starter.git
git checkout master
git fetch react-firebase-starter
git merge react-firebase-starter/master
yarn install
yarn relay

NOTE: Try to merge as soon as the new changes land on the master branch in Node.js API Starter repository, otherwise your project may differ too much from the base/upstream repo.

How to Contribute

Anyone and everyone is welcome to contribute to this project. The best way to start is by checking our open issues, submit a new issues or feature request, participate in discussions, upvote or downvote the issues you like or dislike, send pull requests.

Learn React.js and ES6

🎓   React for Beginners and ES6 Training Course by Wes Bos
📗   React: Up & Running: Building Web Applications by Stoyan Stefanov (Aug, 2016)
📗   Getting Started with React by Doel Sengupta and Manu Singhal (Apr, 2016)
📗   You Don't Know JS: ES6 & Beyond by Kyle Simpson (Dec, 2015)

Related Projects

  • React App SDK — Create React App modification that unlocks server-side rendering
  • React Starter Kit — Boilerplate and tooling for building isomorphic web apps with React and Relay
  • Node.js API Starter Kit — Boilerplate and tooling for building data APIs with Docker, Node.js and GraphQL

License

Copyright © 2015-present Kriasoft. This source code is licensed under the MIT license found in the LICENSE.txt file.


Made with ♥ by Konstantin Tarkus (@koistya, blog) and contributors

About

Boilerplate (seed) project for creating web apps with React.js, Firebase and GraphQL

https://firebase.reactstarter.com

License:MIT License


Languages

Language:JavaScript 97.9%Language:HTML 2.1%