Fast, clean, no‑nonsense guide to installing the latest Node.js + npm on Windows using PowerShell.
(Works on Windows 10/11, no extra tooling required.)
1. Check if Node is already installed
node -vnpm -v
If both commands return “not recognized,” proceed.
This opens the official installer page. Download the Windows x64 .msi → run it → accept defaults:
✔ Add to PATH
✔ Install npm
✔ Install Node.js runtime
After installation, restart PowerShell.
3. Verify installation
node -vnpm -v
You should see something like:
v20.x.x
10.x.x
4. Update npm (optional but common)
npm install -g npm@latest
5. (Optional) Install nvm-windows for easy version switching
If you want multiple Node versions:
winget install CoreyButler.NVMforWindows
Then:
nvm install latestnvm use latest
6. Quick sanity test
node -e "console.log('Node is working')"npm init -y
If you want, I can also give you a minimal setup checklist, a script that installs everything automatically, or a guide for using Node with Quartz/Cloudflare Pages since you have those tabs open.
@Claude ○˒
(echo:: @ ᯤᯤ)