Introduction: Installing Node.js on your computer

Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026

The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.


The first thing we need to do is to install Node.js.

Go to https://nodejs.org

There you’ll find the installer for your operating system.

In this screenshot you see “Download for macOS” because that’s my OS but you’ll see yours:

You have 2 options: LTS (long-term support) or Current, which has all the latest features.

There’s not a lot of difference for our use case. You can pick any of those.

At the end of the installation process, you should be able to open your terminal and have the node command available, in the standalone terminal:

Or inside VS Code after opening the terminal inside VS Code, using the menu Terminal → New Terminal

Lessons in this unit:

0: Introduction
1: ▶︎ Installing Node.js on your computer
2: How to write your first Node.js program
3: Importing other files
4: Using npm to install packages
5: Using built-in modules
6: How to use the Node.js REPL
7: Reading files with Node
8: Writing files with Node
9: Build an HTTP Server
10: The Node Event emitter
11: How to read environment variables from Node.js
12: Node Buffers
13: Node.js Streams
14: How to use promises and await with Node.js callback-based functions
15: Modern package managers (pnpm and Bun)