nvm 이란?
node version manager의 약자
node.js 여러 버전을 설치해두고 원하는 버전을 선택적으로 운영할 수 있다.
macOS 에서 설치하기
brew를 활용해서 설치합니다.
$ brew install nvm
>> brew 설치하기 참고
Homebrew
The Missing Package Manager for macOS (or Linux).
brew.sh
환경변수 설정하기
홈디렉토리에 .nvm 폴더 생성
$ mkdir ~/.nvm
프로파일을 열어서
$ vi ~/.bash_profile
다음 내용을 맨 아래에 입력해 준다.
export NVM_DIR="$HOME/.nvm"
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
[ -s "/usr/local/opt/nvm/etc/bash_completion.d/nvm" ] && . "/usr/local/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
ESC 키 클릭 후
:wq + enter
배치파일을 다시 실행시킵니다.
$ source ~/.bash_profile
설치확인
$ nvm -v
Node.js 원하는 버전 설치하기
$ nvm install 16.17.0
Node.js 설치된 버전 리스트 확인하기
$ nvm ls
원하는 버전 이용하기
$ nvm use 10.10.0
필요없는 버전 삭제하기
$ nvm uninstall 10.10.0
nvm 명령어 예제
Example:
nvm install 8.0.0 Install a specific version number
nvm use 8.0 Use the latest available 8.0.x release
nvm run 6.10.3 app.js Run app.js using node 6.10.3
nvm exec 4.8.3 node app.js Run `node app.js` with the PATH pointing to node 4.8.3
nvm alias default 8.1.0 Set default node version on a shell
nvm alias default node Always default to the latest available node version on a shell
nvm install node Install the latest available version
nvm use node Use the latest version
nvm install --lts Install the latest LTS version
nvm use --lts Use the latest LTS version
nvm set-colors cgYmW Set text colors to cyan, green, bold yellow, magenta, and white
'프로그래밍 > Node.js' 카테고리의 다른 글
Node.js에 대해서 (0) | 2024.07.06 |
---|---|
PM2란? (0) | 2022.09.05 |
Node.js 내컴퓨터에 설치하기 (macOS) (0) | 2022.09.03 |
[Node.js] express 웹서버 설치하기 (0) | 2022.09.03 |
[Node.js] 자신만의 모듈 만들고 적용하기 (0) | 2022.09.03 |