Karll 블로그

[Web] Nodejs 최신 버전 설치





1. Yum Repository 추가

2019 09 04 시점

  • Latest Release :
# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -
  • Stable Release :
# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup_10.x | sudo -E bash -

2. Install

# sudo yum install nodejs

3. Nodejs & NPM 버전 확인

# node -v 

v12.8.0

# npm -v 

6.10.2

참고 : How To Install Latest Nodejs on CentOS/RHEL 7/6