Setup · Chapter 4 of 6
Installing Node.js
The engine behind most modern web projects.
Node.js lets your computer run JavaScript outside a browser, and nearly every modern web project leans on it. You'll never interact with it directly; it just needs to exist on your machine.
- 1
Open your terminal and paste this in:
Terminalbrew install node - 2
Press Enter. Homebrew might update itself first, then fetch Node. Give it a few minutes.
- 3
When it settles, verify it landed:
Terminalnode --version - 4
Press Enter. You want a line starting with
vand some digits. Any version is fine:What success looks likev24.1.0
Version number? Your Mac is fully prepped. On to the tools.
