node.js - node 설치 (nvm)
nvm 설치 nvm 설치 명령어 실행 👉 https://github.com/nvm-sh/nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash ① 명령어 실행 후, 제대로 설치 되었는지 확인 nvm --version node 설치 nvm install 버전xxx 설치된 node 리스트 확인 nvm ls 사용할 node 버전 선택&변경하기 nvm use 버전xxx 사용 중인 node 버전 확인하기 우리 컴퓨터에서 node를 사용할 수 있는 환경이 되면, node 라는 명령어를 사용할 수 있다. 아래 명령어로 사용할 node 버전이 설치되고, 잘 선택 되었는지 확인해보기. node --version no..
node.js
2021. 9. 6. 10:41