1. curl 을 설치해준다.
=> sudo apt-get install -y curl
2. build-essential을 설치해준다.
=> sudo apt-get install -y build-essential
3. curl 을 통해 nodejs를 설치해준다.
=> sudo curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash --
=> sudo apt-get install -y nodejs
4. node.js 의 버전을 확인해준다.
=> node -v
5. npm의 버전을 확인해준다.
=> npm -v