Install Node.js and npm on CentOS 7

1. Add NodeSource yum repository

현재 Node.js LTS 버전은 10.x 이며 8 버전을 설치하고 싶을 경우 커맨드 라인에 10.x를 8.x로 변경해서 실행하면 된다.

curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -

2. Install Node.js and npm

sudo yum install nodejs

3. Verify the Node.js and npm Installation

node --version
npm --version