머신에서 여러 버전의 Node를 사용하는 방법
NVM이란?
nvm
allows you to quickly install and use different versions of Node via the command line. You can read more about it and how to install it on the README . nvm
는 원래 Linux 시스템용으로 개발되었지만 Windows용으로 별도로 설치할 수 있습니다.리눅스에 설치
To install on Linux run:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
#or
wget -q0- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
Then close and reopen the terminal for the system to recognize the changes or run the command:
source ~/.bashrc
Windows에 설치
nvm
can be installed on the windows system using the following steps:
nvm-setup.zip
파일 설치 및 압축 해제맥OS에 설치
No hard feelings Mac users, just jejely follow the instructions here to install nvm with homebrew .성공했는지 확인하려면 다음을 실행하십시오.
nvm --version
터미널의 nvm --version 출력
엄청난! 이제 럼블할 준비가 되었습니다.
nvm
로 많은 작업을 수행할 수 있습니다. 다음은 몇 가지 예입니다.$ nvm use 16
Now using node v16.9.1 (npm v7.21.1)
$ node -v
v16.9.1
$ nvm use 14
Now using node v14.18.0 (npm v6.14.15)
$ node -v
v14.18.0
$ nvm install 12
Now using node v12.22.6 (npm v6.14.5)
$ node -v
v12.22.6
그렇게 간단합니다!
Node의 LTS 버전 설치 및 사용
This is recommended for most users. To do this run:
nvm install --lts
터미널에 nvm --install 출력
Hermoso ✨, 이제 완고한 패키지를 설치하고 설치할 수 있습니다.
새 버전을 기본값으로 설정
Now, if you close your current terminal and run node -v
you might notice that it still shows your old node version.
You can try to set a the new version as default:
nvm alias default v16.14.2
Close your terminal and open again to run node -v
again to check. You should see the new version.
여전히 이전 노드 버전을 표시하는 열린 터미널을 종료해야 합니다.
If you’re using VSCode’s terminal for example, you might notice that even if you close the terminal by clicking on the trash can icon, when you open it again, and run node -v
, it still shows you the old node version.
You’ll have to exit the terminal by running:
exit
When you open it again and check the terminal, you should see the new node version.
추가 읽기 및 리소스
읽어주셔서 감사합니다 💖. 질문이나 제안 사항이 있으면 알려주세요 ✨
Reference
이 문제에 관하여(머신에서 여러 버전의 Node를 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/miracleio/how-to-use-multiple-versions-of-node-on-your-machine-19hl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)