WEBD/서버
centOS7 node설치( node.js , npm )[ Server ][ Linux ]
라떼^^
2020. 10. 6. 07:47
epel 저장소 확인
# yum repolist
epel 저장소가 존재하지 않으면 먼저 epel-release 설치
# yum install epel-release -y
node.js 및 npm 설치 여부 확인
# node --version
bash: node: command not found
# npm --version
bash: npm: command not found
설치되어 있지 않을 시 설치 명령 실행
# yum install npm nodejs -y
# node --version
v6.16.0
# npm --version
3.10.10
LIST