본문으로 바로가기

nodejs, NPM 설치

category 개발 2020. 12. 14. 00:30



nodejs 설치

# curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

# sudo apt-get install -y nodejs

10, 14, 15 버전 설치 할 때는 12.x 자리에 10.x, 14.x, 15.x를 대신 넣으면 된다.


nodejs 설치 되면 NPM도 함께 설치 된다. NPM 사용하면서 오류 발생하면 아래 패키지 설치한다.

# sudo apt-get install build-essential


설치 버전 확인

# node -v

v12.20.0

# npm -v

6.14.8