Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Gatsby starter by muhajirframe that adds Firebase authentication, a Redux Todo example, and data fetching to static sites.
Gatsby Starter Redux Firebase is a Gatsby starter for React developers that scaffolds a static site with Firebase authentication, a Redux-integrated Todo example, and a data-fetching component, created by muhajirframe.
Gatsby Starter Redux Firebase is a project starter built on Gatsby that wires Firebase services into a React app. It takes a fresh Gatsby project and adds ready-made components: SignIn and SignOut authentication via react-firebaseui, a Todo example powered by react-redux-firebase, and a FetchingExample that demonstrates pulling data from Firebase. After you configure Firebase and run the build command, the starter outputs a static site into the /public directory.
gatsby new my-new-website https://github.com/muhajirframe/gatsby-starter-redux-firebase, then run npm run develop for local development.npm run build produces a production-ready static site in /public, ready to deploy to any static host.npm install --global gatsby-cli.gatsby new my-new-website https://github.com/muhajirframe/gatsby-starter-redux-firebase.npm run develop to start the development server.npm run build to generate static files in /public.Yes, this is an open-source starter published on GitHub, so it is free to use and modify under the repository's license.
Install the Gatsby CLI globally, then create a new project with gatsby new my-website https://github.com/muhajirframe/gatsby-starter-redux-firebase as shown in the Getting Started section. No other setup is required.
The starter includes a FetchingExample data component, SignIn and SignOut authentication components using react-firebaseui, and a Todo example using react-redux-firebase. The build command outputs a static site to /public.
Yes, the starter integrates Redux through react-redux-firebase, and the included Todo example demonstrates Redux state management with Firebase in action.