Skip to content

Instantly share code, notes, and snippets.

@iliion
Last active October 28, 2024 09:53
Show Gist options
  • Save iliion/50c88290f7ad7b0d3d8c75cfcbfae156 to your computer and use it in GitHub Desktop.
Save iliion/50c88290f7ad7b0d3d8c75cfcbfae156 to your computer and use it in GitHub Desktop.
Install Node.js v22.9.0 on Windows using fnm

Install NODE JS via Windows Powershell

  1. Install fnm (Fast Node Manager) winget install Schniz.fnm
  2. configure fnm environment fnm env --use-on-cd | Out-String | Invoke-Expression
  3. download and install Node.js fnm use --install-if-missing 22
  4. Verify the right Node.js version is in the environment node -v -> should print v22.9.0
  5. Verify the right npm version is in the environment npm -v -> should print 10.8.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment