머신에서 여러 버전의 Node를 사용하는 방법

5750 단어 javascriptnodenvm
내 Linux 시스템에서 이 작업을 시도한 가장 좋은 방법은 nvm을 사용하는 것입니다.

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:

  • Go to this site
  • 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.

    추가 읽기 및 리소스

  • How to update Node.js and NPM to next version ? - GeekforGeeks
  • How to Update Node.js to Latest Version {Linux, Windows, and macOS}
  • nvm-sh/nvm
  • How To Install NVM on macOS with Homebrew

  • 읽어주셔서 감사합니다 💖. 질문이나 제안 사항이 있으면 알려주세요 ✨

    좋은 웹페이지 즐겨찾기