nodejs
2022/2/26小于 1 分钟
nodejs
# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | zsh
# then restart shell session
# install latest nodejs
nvm install node
# config npm
npm config set registry http://registry.npmmirror.com
npm config set disturl http://npmmirror.com/dist
# install yarn
npm install --global yarn
# config yarn
yarn config set registry http://registry.npmmirror.com
yarn config set disturl http://npmmirror.com/dist