개발 창고/Server
[AWS] NodeJS 설치
로이제로
2023. 2. 14. 22:00
반응형
1/ nvm 설치
# curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
2/ nvm 활성화
# . ~/.nvm/nvm.sh
3/ node 17.6버전 설치
# nvm install 17.6
※ 최신lts 버전 설치시
# nvm install --lts
4/ node 버전 확인
# node --version
5/ nvm 버전 확인
# nvm --version
반응형