[note] Gatsby Usage

๐Ÿ“Œ Introduction

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.

๐Ÿ”— References

Author

Hsiang-Jen Li & ChatGPT-4o Mini

Posted on

2022-09-02

Updated on

2025-02-28

Licensed under