공부
[js] node & npm & yarn
승가비
2023. 1. 24. 06:19
728x90
sudo rm -rf /var/lib/apt/lists
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
npm install -g yarn
yarn -v
npm install -g n
n stable
[Node.js] Node.js & NPM 업그레이드하기!
📚 Node.js와 NPM 최신으로 업그레이드하기!
velog.io
[Ubuntu] 우분투에 Nodejs와 Yarn 설치
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 설
blog.system32.kr
728x90