Summary

nvm을 Windows에서 사용할 수 있도록 해주는 NVM for Windows의 설치 및 설정법에 관해 정리했습니다.

Quick Links

Installation

Installation Setup File

  1. 공식 GitHub 최신 Releases접속
  2. nvm-setup.exe 설치 및 실행

Excution Setup File

  1. License Agreement Agree and Next
  2. Destination Location Next
  3. Version Location Next
  4. Desktop Notifications All False and Next
  5. Email Address Blank and Next
  6. Ready to Install Install

Done

Usage

NVM Version Management

# Check NVM Version
nvm version
 
# Upgrade NVM Version
nvm upgrade 

Node Version Management

# Install Node
nvm install <node-version>
 
# Uninstall Node
nvm uninstall <node-version>
 
# Active Node
nvm use <node-version>
 
# Check Active Node Version
nvm current