NPM 버젼 여러 개 관리하기


왜 NPM 버젼이 여러 개 필요하죠?

  • 레거시 프로젝트와 신규 프로젝트를 오가면서 작업하는 경우 여러 NPM 버젼 사이에 호환성 문제가 발생할 수 있습니다. (예: npm 16 버젼을 요구하는 프로젝트)

NVM (Node Version Manager)

nvm allows you to quickly install and use different versions of node via the command line.

설치

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

다른 node version 설치

nvm install 16

다른 node 버젼 사용

nvm use 16