'nvm'에 해당하는 글 1건

 

NVM(Node Version Manager) : 노드 버전 관리 툴

 

개발하다 보면 node.js 의 다양한 버전을 필요로 할 때가 있다. 이 때 nvm 을 사용하면 특정 버전의 node 설치 및 활성화를 쉽게 할 수 있다. 사이트에서 다운받아 설치하고 IDE 에서 설치하는 등 다양한 방법으로 node 버전을 관리하다가 빡치지 말고 처음부터 nvm 으로 관리하시길.

 

다운로드 / 설치 https://github.com/coreybutler/nvm-windows/releases

 

Releases · coreybutler/nvm-windows

A node.js version management utility for Windows. Ironically written in Go. - coreybutler/nvm-windows

github.com

 

> nvm list available

|   CURRENT    |     LTS      |  OLD STABLE  | OLD UNSTABLE |
|--------------|--------------|--------------|--------------|
|    16.6.2    |   14.17.5    |   0.12.18    |   0.11.16    |
|    16.6.1    |   14.17.4    |   0.12.17    |   0.11.15    |
|    16.6.0    |   14.17.3    |   0.12.16    |   0.11.14    |
|    16.5.0    |   14.17.2    |   0.12.15    |   0.11.13    |
|    16.4.2    |   14.17.1    |   0.12.14    |   0.11.12    |
|    16.4.1    |   14.17.0    |   0.12.13    |   0.11.11    |
|    16.4.0    |   14.16.1    |   0.12.12    |   0.11.10    |
|    16.3.0    |   14.16.0    |   0.12.11    |    0.11.9    |
|    16.2.0    |   14.15.5    |   0.12.10    |    0.11.8    |
|    16.1.0    |   14.15.4    |    0.12.9    |    0.11.7    |
|    16.0.0    |   14.15.3    |    0.12.8    |    0.11.6    |
|   15.14.0    |   14.15.2    |    0.12.7    |    0.11.5    |
|   15.13.0    |   14.15.1    |    0.12.6    |    0.11.4    |
|   15.12.0    |   14.15.0    |    0.12.5    |    0.11.3    |
|   15.11.0    |   12.22.5    |    0.12.4    |    0.11.2    |
|   15.10.0    |   12.22.4    |    0.12.3    |    0.11.1    |
|    15.9.0    |   12.22.3    |    0.12.2    |    0.11.0    |
|    15.8.0    |   12.22.2    |    0.12.1    |    0.9.12    |
|    15.7.0    |   12.22.1    |    0.12.0    |    0.9.11    |
|    15.6.0    |   12.22.0    |   0.10.48    |    0.9.10    |

This is a partial list. For a complete list, visit https://nodejs.org/download/release

> nvm install 14.17.5
Downloading node.js version 14.17.5 (64-bit)...
Complete
Creating C:\Users\hongs\AppData\Roaming\nvm\temp

Downloading npm version 6.14.14... Complete
Installing npm v6.14.14...

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

nvm use 14.17.5

> nvm use 14.17.5
Now using node v14.17.5 (64-bit)

> nvm ls

  * 14.17.5 (Currently using 64-bit executable)
    12.22.5

WRITTEN BY
손가락귀신
정신 못차리면, 벌 받는다.

,