Gatsby

5.16.1 · active · verified Sat Apr 18

Gatsby is a free and open-source framework built on React for creating blazing-fast websites and apps. It supports various data sources like Markdown, headless CMS, and GraphQL APIs, offering Static Site Generation (SSG), Deferred Static Generation (DSG), and Server-Side Rendering (SSR) options. Version 5.16.1 is the current stable release, with frequent patch and minor updates.

Common errors

Warnings

Install

Imports

Quickstart

This command creates a new Gatsby project, navigates into its directory, and starts the development server, making the site accessible at localhost:8000.

gatsby new my-gatsby-site
cd my-gatsby-site
gatsby develop

view raw JSON →