This article provides a guide on how to install Gatsby and create a new Gatsby site using starter themes. It covers the installation steps, commands to set up a Gatsby site, and links to troubleshoot common errors.
๐ Quick Start
Install Gatsby
1 2
npm install -g gatsby-cli gatsby --version
gatsby-starter-blog
1 2 3
gatsby new hjl https://github.com/gatsbyjs/gatsby-starter-blog cd hjl gatsby develop
gatsby-starter-julia
1 2
gatsby new RN https://github.com/niklasmtj/gatsby-starter-julia cd rn
Use Legacy Peer Dependencies
1
--legacy-peer-deps
๐ Recap
Installation of Gatsby CLI using npm is straightforward with the command npm install -g gatsby-cli.
After installation, you can check the version of Gatsby installed.
To create a new Gatsby site, several starter themes can be used, such as gatsby-starter-blog and gatsby-starter-julia.
Common errors related to npm and Gatsby are well documented through various links provided in the article.