Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs update. #38915

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/docs/how-to/local-development/starters.md
Expand Up @@ -25,6 +25,7 @@ gatsby new {your-project-name} {link-to-starter}

```shell
cd {your-project-name}
npm install
gatsby develop
```

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/tutorial/getting-started/part-0/index.mdx
Expand Up @@ -54,14 +54,14 @@ In addition to the ones listed above, Gatsby uses a few more technologies under

The rest of this part of the Tutorial walks you through how to install the following tools:

- [Node.js](#nodejs) (v18 or newer)
- [Node.js](#nodejs) (v18 or newer, but less than v21)
- [Git](#git)
- [Gatsby command line interface (CLI)](#gatsby-cli) (v5 or newer)
- [Visual Studio Code](#visual-studio-code)

### Node.js

[Node.js](https://nodejs.dev/en/learn/) is an environment that can run JavaScript code outside of a web browser. Gatsby is built with Node.js. To get up and running with Gatsby, you鈥檒l need to have Node.js version 18 (or newer) installed on your computer.
[Node.js](https://nodejs.dev/en/learn/) is an environment that can run JavaScript code outside of a web browser. Gatsby is built with Node.js. To get up and running with Gatsby, you鈥檒l need to have Node.js version 18 (or newer, but less than v21) installed on your computer.

[npm](https://docs.npmjs.com/getting-started/what-is-npm) is a package manager that comes bundled with Node.js. You'll use the npm command line interface to add packages to your site (like Gatsby plugins) and to run command line tasks (like starting up your site).

Expand Down