# npm安装其它

# yarn

npm install -g yarn --registry=https://registry.npm.taobao.org
或
永久设置
npm config set registry https://registry.npm.taobao.org
还原
npm config set registry https://registry.npmjs.org/
npm install -g yarn
1
2
3
4
5
6
7

npm安装失败

国内的网络连接npm速度较慢,甚至很多东西都无法下载安装,换源(使用代理)

# vuepress

npm install -g vuepress
1

# npm更新

npm install -g npm@latest
1