自動目錄
在Centos 7上安裝 nodejs 8和yarn
NODEJS 8 安裝
如果直接用 yum install yarn的話,你會得到一個6.x的版本,因此需要下載 repository[1]
# curl -sL https://rpm.nodesource.com/setup_8.x
# yum install nodejs
檢測是否安裝完畢
$ node -v
v8.16.2
YARN 安裝
yarn是一個套件管理程式,和npm或yum是一樣[3]。
先下載repository 並放到指定的位置中[2]
# curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
安裝
遇到驗證pkg key的話請按Y
檢測
1.19.1
參考資料
[1] https://www.hugeserver.com/kb/install-nodejs8-centos7-debian8-ubuntu16/
[2] https://linuxize.com/post/how-to-install-yarn-on-centos-7/
[3] https://yarnpkg.com/lang/en/