LukeHan 의 잡다한 기술 블로그

윈도우에서 NVM 설치하기 본문

개발/node.js

윈도우에서 NVM 설치하기

LukeHan1128 2023. 4. 10. 20:00
반응형

 

NVM 이란?

Node Version Manager 의 약자이고 여러 버전의 Node.js 설치 및 버전 관리를 지원해 주는 도구

 

 

 

 

 

 

Node.js 설치하기

이전에는 n 패키지를 통해  Node.js 설치를 지원하였으나, 더 이상 Windows 를 지원하지 않는다고 한다.

아래의 링크에서 직접 다운로드하여 설치 진행한다.

 

 

 

 

 

 

NVM for Windows 다운로드

Windows 용 NVM 은 아래의 Github 페이지에서 다운로드 받는다.

 

 

 

 

Github 페이지의 README.md 항목을 확인해 보면 위와 같이 'Download Now!' 버튼을 확인할 수 있다.

 'Download Now!' 버튼을 클릭 실행하여 Releases 페이지로 이동한다.

 

 

 

 

Releases 목록 중 설치 진행할 버전을 확인한 후 설치 프로그램을 다운로드 한다.

 

 

 

 

위와 같이 다운로드 받은 설치파일을 확인할 수 있을 것이다.

설치 파일을 클릭 실행하여 설치를 진행한다.

 

 

 

 

 

 

NVM 설치 확인

설치가 완료되면 cmd 창을 실행한다.

C:\Users\lukehan>nvm version
1.1.10

명령어를 입력하면 위와 같이 버전 정보를 확인할 수 있다.

 

 

 

 

C:\Users\lukehan>nvm

Running version 1.1.10.

Usage:

  nvm arch                     : Show if node is running in 32 or 64 bit mode.
  nvm current                  : Display active version.
  nvm install <version> [arch] : The version can be a specific version, "latest" for the latest current version, or "lts" for the
                                 most recent LTS version. Optionally specify whether to install the 32 or 64 bit version (defaults
                                 to system arch). Set [arch] to "all" to install 32 AND 64 bit versions.
                                 Add --insecure to the end of this command to bypass SSL validation of the remote download server.
  nvm list [available]         : List the node.js installations. Type "available" at the end to see what can be installed. Aliased as ls.
  nvm on                       : Enable node.js version management.
  nvm off                      : Disable node.js version management.
  nvm proxy [url]              : Set a proxy to use for downloads. Leave [url] blank to see the current proxy.
                                 Set [url] to "none" to remove the proxy.
  nvm node_mirror [url]        : Set the node mirror. Defaults to https://nodejs.org/dist/. Leave [url] blank to use default url.
  nvm npm_mirror [url]         : Set the npm mirror. Defaults to https://github.com/npm/cli/archive/. Leave [url] blank to default url.
  nvm uninstall <version>      : The version must be a specific version.
  nvm use [version] [arch]     : Switch to use the specified version. Optionally use "latest", "lts", or "newest".
                                 "newest" is the latest installed version. Optionally specify 32/64bit architecture.
                                 nvm use <arch> will continue using the selected version, but switch to 32/64 bit mode.
  nvm root [path]              : Set the directory where nvm should store different versions of node.js.
                                 If <path> is not set, the current root will be displayed.
  nvm [--]version              : Displays the current running version of nvm for Windows. Aliased as v.

위와 같이 mvn 만 입력하는 경우 버전 정보 및 사용 가능한 명령어 목록 및 설명을 확인할 수 있다.

 

 

 

 

 

 

LTS 버전 설치 및 사용하기

안정적인 버전을 사용하기 위하 LTS 버전을 설치하고자 한다.

 

C:\Users\lukehan>nvm list
8.11.2

위와 같이 명령어를 입력하여 설치된 Node.js 버전을 확인한다.

 

 

 

 

C:\Users\lukehan>nvm install lts

Downloading node.js version 18.14.2 (64-bit)...
Extracting node and npm...
Complete
npm v9.5.0 installed successfully.


Installation complete. If you want to use this version, type

nvm use 18.14.2

위와 같이 입력하여 LTS 버전을 설치 진행한다.

 

 

 

 

C:\Users\lukehan>nvm list

  * 18.14.2 (Currently using 64-bit executable)
    8.11.2

위와 같이 입력하여 목록을 확인해 보면 LTS 버전이 설치되었으며 사용 중인 것을 확인할 수 있다.

 

 

 

 

 

반응형
Comments