Gatsby Starters
The Gatsby CLI tool lets you install starters, which are boilerplate Gatsby sites maintained by the community and intended for jump-starting development quickly.
Installing starters
Execute the gatsby new
command to clone a boilerplate starter, install its dependencies, and clear Git history.
Using Git repo URLs
When creating a new Gatsby site, you can optionally specify a starter to base your new site on; they can come from any publicly available Git repo, such as GitHub, GitLab, or Bitbucket. You can supply the [URL_OF_STARTER_GIT_REPO]
directly:
For example, to create a site in a blog
directory with Gatsby Starter Blog from its GitHub URL:
This downloads the files and initializes the site by running npm install
.
Using GitHub usernames and repos instead of URLs
Alternatively, you can also supply a GitHub user name and repository:
Here is an example with the [GITHUB_USER_NAME/REPO]
format:
This also downloads the files and initializes the site by running npm install
.
If you don’t specify a custom starter, your site will be created from the default starter.
Note: If you work for an Enterprise-level company where you are unable to pull from public GitHub repositories, you can still set up Gatsby. Check out the docs to learn more.
Using a local starter
Another option is to supply a path (relative or absolute) to a local folder containing a starter:
Here is an example assuming a starter exists on the path ./Code/my-local-starter
:
Official starters
Official starters are maintained by Gatsby.
Starter | Demo | Use case | Features |
---|---|---|---|
gatsby-starter-default | Demo | Appropriate for most use cases | General Gatsby site |
gatsby-starter-blog | Demo | Create a basic blog | Blog post pages and listings |
gatsby-starter-hello-world | Demo | Learn Gatsby | Gatsby bare essentials |
Modifying starters
Learn how to modify a starter in the Gatsby docs. You can use official and community starters out of the box but you may want to customize their style and functionality.
Making starters
Learn how to make a starter in the Gatsby docs. Starters can be created for your team(s) only or distributed to the broader community. It’s up to you!
Community starters
Community starters are created and maintained by Gatsby community members.
- Looking for a starter for a particular use case? Browse starters that have been submitted to the Starter Library.
- Created a starter you’d like to share? Follow these steps to submit your starter to the Starter Library.
Edit this page on GitHub