Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Gatsby default starter enhanced with built-in accessibility tools for building accessible React sites.
Gatsby Starter Accessibility is a GitHub-hosted boilerplate that extends Gatsby's official default starter with built-in accessibility tools, giving React developers a preconfigured starting point for accessible static websites.
Gatsby Starter Accessibility is a Gatsby starter project, originally forked from Gatsby's default starter, that adds accessibility awareness to the standard boilerplate. It runs on Gatsby, a React-based static site generator, and takes a project name and repository URL as input through the Gatsby CLI to output a complete site structure with source code in the src directory. The starter is authored by Benjamin Robertson and published on GitHub under the MIT license.
gatsby-config.js, gatsby-node.js, gatsby-browser.js, and gatsby-ssr.js, so all standard Gatsby configuration hooks are present.package.json for the exact list..prettierrc file to keep code style consistent across your project.gatsby new my-default-starter https://github.com/benjamingrobertson/gatsby-starter-accessibility.gatsby develop starts a hot-reloading server at http://localhost:8000 that updates in the browser as you edit files.http://localhost:8000/___graphql, for experimenting with GraphQL queries against your site's data.src/pages/index.js to replace the default page with your own content.localhost:8000/___graphql to practice queries before wiring them into components.The README outlines a three-step workflow: first, run the Gatsby CLI command that clones the starter into a new directory; second, enter that directory and run gatsby develop to start the local server; third, open the project in your editor and modify src/pages/index.js, which the server picks up in real time.
Yes, the starter is open source and released under the MIT license, so you can use it for personal and commercial projects without licensing fees.
The README describes the starter as having built-in accessibility tools, but it does not list the individual packages. For the precise dependency list, check the package.json file in the GitHub repository.
Yes, the quick start uses gatsby new, which requires the Gatsby command-line interface. This is the standard way to scaffold a new Gatsby project.
Yes, it's a standard Gatsby boilerplate. You can edit files in src/pages, change metadata and plugins in gatsby-config.js, and adjust formatting rules in .prettierrc.
