Page 2 of 620% complete
Step 1 of 5

Setup your tools

Three things to install before Level 2. Follow the steps below exactly. If you hit an error, screenshot it and paste it into Claude — it's great at troubleshooting installer errors. Still stuck after Claude's suggestions? Bring the screenshot to Level 2 and we'll fix it in the first 10 minutes.

Sign up for Vercel (free)

Vercel is the platform that hosts the tools you'll build. Free for everything we'll be doing.

  1. Go to vercel.com/signup and create your free account
  2. When asked, choose the Hobby (Free) plan
  3. You don't need to create a project yet — just having the account is enough

Install Node.js

Node.js lets your computer run the next tool we need.

🍎If you're on a Mac
  1. Go to nodejs.org
  2. Click the big green “Get Node.js” button
  3. Open the file that downloads (it ends in .pkg)
  4. Keep clicking Continue, then Install — enter your Mac password if asked
  5. Wait for “Installation Successful”, then close the installer
🪟If you're on Windows
  1. Go to nodejs.org
  2. Click the big green “Get Node.js” button
  3. Open the file that downloads (it ends in .msi)
  4. Keep clicking Next, then Install — click Yes if Windows asks for permission
  5. Wait for the “Completed” screen, then click Finish

Quick check (optional)

To confirm Node.js installed correctly, open Terminal (Mac) or Command Prompt (Windows) — see Step 3 for how to open these — type node -v and press Enter.

You should see a number like v20.18.0. If you see “command not found,” reinstall Node.js.

Install Vercel CLI

The Vercel CLI is the tool Claude Code uses to launch your projects online.

🍎If you're on a Mac
  1. Press Cmd + Space, type Terminal, press Enter
  2. In the window that opens, type: npm install -g vercel
  3. Press Enter and wait 1-2 minutes
  4. When it's done, type vercel --version and press Enter — you should see a number like 36.x.x
🪟If you're on Windows
  1. Click the Start menu, type Command Prompt, press Enter
  2. In the window that opens, type: npm install -g vercel
  3. Press Enter and wait 1-2 minutes
  4. When it's done, type vercel --version and press Enter — you should see a number like 36.x.x

Pro tip: if the Vercel CLI install fails with “permission denied”

On a Mac: type sudo npm install -g vercel instead. It will ask for your Mac password — type it and press Enter. (You won't see the characters as you type — that's normal.)
On Windows: close Command Prompt. Click the Start menu and type Command Prompt, then right-click it and choose Run as administrator. Try the install command again.