Skip to content
Build blazing fast, modern apps and websites with React
JavaScript CSS TypeScript HTML Shell Dockerfile
Branch: master
Clone or download
marcysutton Update accessibility user testing post (#20540)
* update user testing post

* update note to not be a blockquote
Latest commit 0f44d23 Jan 16, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci feat(benchmarks): add circleci job (#20490) Jan 13, 2020
.forestry chore(docs): add pullquote snippet for Forestry CMS (#12732) Mar 21, 2019
.github Update config.yml to add a CTA to /docs Jan 8, 2020
benchmarks feat(benchmarks): add circleci job (#20490) Jan 13, 2020
docs Update accessibility user testing post (#20540) Jan 16, 2020
e2e-tests fix(gatsby): enable static queries in `wrapRootElement` (#19986) Dec 20, 2019
examples fix(docs): improve WordPress tutorial (#20520) Jan 14, 2020
integration-tests Fix linting for new version of Prettier Nov 10, 2019
packages Makes the ESLint configuration work regardless of the hoisting (#20629) Jan 15, 2020
peril Improve comment for when we auto-close a PR in a starter repo (#20345) Jan 6, 2020
plop-templates chore: implement babel-preset-gatsby into packages that need it (#9323) Oct 29, 2018
scripts feat(benchmarks): add circleci job (#20490) Jan 13, 2020
starters fix(gatsby-starter-blog): Load PrismJS theme CSS (#20282) Jan 8, 2020
www Docs / Encyclopedia: Adds JAMStack entry. (#20456) Jan 15, 2020
.babelrc.js chore(gatsby): Use Typescript internally! (#19923) Dec 20, 2019
.dockerignore [v2] WIP merge in master (#4061) Feb 15, 2018
.editorconfig chore: add git hooks and simplify scripts (#8427) Nov 6, 2018
.eslintignore chore(gatsby): Add TS support to eslint and improve speed (#20246) Jan 7, 2020
.eslintrc.js chore(gatsby): Prevent eslint from changing type string quotes into b… Jan 7, 2020
.gitattributes Use merge=union for yaml files so we have less merge conflicts (#12851) Mar 26, 2019
.gitignore chore(gatsby): Add TS support to eslint and improve speed (#20246) Jan 7, 2020
.gitpod.Dockerfile feat: add gitpod config (#15034) Jun 25, 2019
.gitpod.yml feat: add gitpod config (#15034) Jun 25, 2019
.npmignore npmignore Jun 27, 2019
.prettierignore chore(gatsby-plugin-mdx): run prettier (#16575) Aug 13, 2019
.prettierrc.js docs: add API reference for params passed to gatsby-node APIs (#12087) Mar 13, 2019
.yarnrc clean up dup packages and use yarn as client (#1939) Aug 30, 2017
CHANGELOG.md chore(*): tweak changelog (#12648) Mar 19, 2019
CODEOWNERS Remove themes core for bootstrap in CODEOWNERS Nov 19, 2019
CODE_OF_CONDUCT.md chore: and CoC link to repo (#15674) Jul 13, 2019
CONTRIBUTING.md docs: new section for contributing (#11812) Feb 19, 2019
LICENSE Update copyright Mar 28, 2016
README.md Fix README.md on nomjs.com by replacing 🚀 with rocket emoji (#19022) Oct 25, 2019
SECURITY.md Create SECURITY.md (#15162) Jun 26, 2019
jest-transformer.js chore(gatsby): Begin typing the redux code (#20457) Jan 15, 2020
jest.config.js chore(gatsby): Begin typing the redux code (#20457) Jan 15, 2020
lerna.json chore(themes): move themes into starters and packages (#18794) Oct 18, 2019
markdown.config.js chore(themes): move themes into starters and packages (#18794) Oct 18, 2019
netlify.toml arg (#2747) Nov 2, 2017
package.json chore(gatsby): Begin typing the redux code (#20457) Jan 15, 2020
peril.settings.json feat: Use "Stale" GitHub action (#19628) Nov 26, 2019
plopfile.js chore: Format JS Files (#8623) Nov 6, 2018
renovate.json fix(renovate): disable yarn upgrades (#18981) Oct 24, 2019
svgo.yml feat(www): Add brand guidelines, design tokens docs (humble beginning… Jun 15, 2019
tsconfig.json chore(gatsby): Use Typescript internally! (#19923) Dec 20, 2019
yarn.lock chore(gatsby): Begin typing the redux code (#20457) Jan 15, 2020

README.md

Gatsby

Gatsby v2

⚛️ 📄 🚀

Fast in every way that matters

Gatsby is a free and open source framework based on React that helps developers build blazing fast websites and apps

Gatsby is released under the MIT license. Current CircleCI build status. Current npm package version. Downloads per month on npm. Total downloads on npm. PRs welcome! Follow @gatsbyjs

Quickstart · Tutorial · Plugins · Starters · Showcase · Contribute · Support: Spectrum & Discord

Gatsby is a modern web framework for blazing fast websites.

  • Go Beyond Static Websites. Get all the benefits of static websites with none of the limitations. Gatsby sites are fully functional React apps so you can create high-quality, dynamic web apps, from blogs to e-commerce sites to user dashboards.

  • Use a Modern Stack for Every Site. No matter where the data comes from, Gatsby sites are built using React and GraphQL. Build a uniform workflow for you and your team, regardless of whether the data is coming from the same backend.

  • Load Data From Anywhere. Gatsby pulls in data from any data source, whether it’s Markdown files, a headless CMS like Contentful or WordPress, or a REST or GraphQL API. Use source plugins to load your data, then develop using Gatsby’s uniform GraphQL interface.

  • Performance Is Baked In. Ace your performance audits by default. Gatsby automates code splitting, image optimization, inlining critical styles, lazy-loading, and prefetching resources, and more to ensure your site is fast — no manual tuning required.

  • Host at Scale for Pennies. Gatsby sites don’t require servers so you can host your entire site on a CDN for a fraction of the cost of a server-rendered site. Many Gatsby sites can be hosted entirely free on services like GitHub Pages and Netlify.

Learn how to use Gatsby for your next project.

What’s In This Document

🚀 Get Up and Running in 5 Minutes

You can get a new Gatsby site up and running on your local dev environment in 5 minutes with these four steps:

  1. Install the Gatsby CLI.

    npm install -g gatsby-cli
    
  2. Create a Gatsby site from a Gatsby starter.

    Get your Gatsby blog set up in a single command:

    # create a new Gatsby site using the default starter
    gatsby new my-blazing-fast-site
  3. Start the site in develop mode.

    Next, move into your new site’s directory and start it up:

    cd my-blazing-fast-site/
    gatsby develop
  4. Open the source code and start editing!

    Your site is now running at http://localhost:8000. Open the my-blazing-fast-site directory in your code editor of choice and edit src/pages/index.js. Save your changes, and the browser will update in real time!

At this point, you’ve got a fully functional Gatsby website. For additional information on how you can customize your Gatsby site, see our plugins and the official tutorial.

🎓 Learning Gatsby

Full documentation for Gatsby lives on the website.

  • For most developers, we recommend starting with our in-depth tutorial for creating a site with Gatsby. It starts with zero assumptions about your level of ability and walks through every step of the process.

  • To dive straight into code samples head to our documentation. In particular, check out the “Guides”, “API Reference”, and “Advanced Tutorials” sections in the sidebar.

We welcome suggestions for improving our docs. See the “how to contribute” documentation for more details.

Start Learning Gatsby: Follow the Tutorial · Read the Docs

💼 Migration Guides

Already have a Gatsby site? These handy guides will help you add the improvements of Gatsby v2 to your site without starting from scratch!

❗ Code of Conduct

Gatsby is dedicated to building a welcoming, diverse, safe community. We expect everyone participating in the Gatsby community to abide by our Code of Conduct. Please read it. Please follow it. In the Gatsby community, we work hard to build each other up and create amazing things together. 💪💜

🤝 How to Contribute

Whether you're helping us fix bugs, improve the docs, or spread the word, we'd love to have you as part of the Gatsby community! 💪💜

Check out our Contributing Guide for ideas on contributing and setup steps for getting our repositories up and running on your local machine.

A note on how this repository is organized

This repository is a monorepo managed using Lerna. This means there are multiple packages managed in this codebase, even though we publish them to NPM as separate packages.

Contributing to Gatsby v1

We are currently only accepting bug fixes for Gatsby v1. No new features will be accepted.

📝 License

Licensed under the MIT License.

💜 Thanks

Thanks to our many contributors and to Netlify for hosting gatsbyjs.org and our example sites.

You can’t perform that action at this time.