본문 바로가기

Linux/일반

nodejs 16.x 설치

https://github.com/nodesource/distributions/blob/master/README.md

 

GitHub - nodesource/distributions: NodeSource Node.js Binary Distributions

NodeSource Node.js Binary Distributions. Contribute to nodesource/distributions development by creating an account on GitHub.

github.com

 

특정 설치 버전이 있는 경우 해당 url을 참고하면 됩니다.


1. nodejs 16.x 버전 추가

curl -fsSL https://rpm.nodesource.com/setup_16.x | bash -

2. nodejs 설치

yum install -y nodejs

yum으로 nodejs를 설치할 경우 의존성에 의해 libuv, npm이 자동으로 설치 됩니다.

3. 버전 확인

node -v

npm -v