이것저것/Ubuntu
[Ubuntu] 우분투에 Nodejs와 Yarn 설치
pental
2020. 10. 4. 19:14
Nodejs 설치
$ sudo apt-get update
$ sudo apt-get install -y build-essential
$ sudo apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash --
$ sudo apt-get install -y node.js
설치 버전 확인
$ node -v
$ npm -v
Yarn 설치
$ npm install -g yarn
설치 버전 확인
$ yarn -v