Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A GatsbyJS starter with Redux, Sass, and Bootstrap preconfigured, based on the default starter.
Gatsby Redux Starter is a GatsbyJS boilerplate that scaffolds a new static site with Redux state management, Sass styling, and Bootstrap already wired together, based on Gatsby's official default starter.
This starter is a GitHub-hosted project template that starts from the official gatsby-starter-default and adds Redux, Sass, and Bootstrap so you don't have to integrate them yourself. It runs on Gatsby, a React-based static site generator, and is designed to be used through the Gatsby CLI. The repository itself displays the Gatsby monogram at the top of the README and is published on GitHub for anyone to use.
gatsby new, run a development server with hot reloading at localhost:8000, and produce a production build with Gatsby's build command.gatsby new with this starter and immediately start building pages styled with Bootstrap and managing UI state through Redux.Install the Gatsby CLI globally with npm install -g gatsby-cli. Then create a new site with gatsby new my-default-starter using this starter. Navigate into the folder, run gatsby develop, and the site runs at localhost:8000 with live updates when you edit src/pages/index.js. A second link, localhost:8000___graphql, opens GraphiQL for querying your data.
Yes, it is an open-source Gatsby starter hosted on GitHub, licensed under the MIT license, so it is free to use and modify.
The quick start instructions install the Gatsby CLI globally. The starter itself is just a repository template, but the standard workflow expects you to use the CLI to scaffold and develop the project.
The link localhost:8000___graphql opens GraphiQL, a tool for experimenting with GraphQL queries against the data in your Gatsby site, as mentioned in the README's quick start notes.
