Centos安装nodejs记录

教程

安装nodejs

curl --silent --location https://rpm.nodesource.com/setup_16.x | bash -

yum install nodejs -y

安装yarn

curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | tee /etc/yum.repos.d/yarn.repo

rpm --import https://dl.yarnpkg.com/rpm/pubkey.gpg

yum install yarn -y

设置镜像

npm config set registry https://registry.npm.taobao.org/

yarn config set registry https://registry.npm.taobao.org/
上次更新: