关键链接:
下载地址(下载包里包含了npm): https://nodejs.org/zh-cn/download/releases/
阿里 NPM 源: https://npmmirror.com/
域名切换规则:
* http://npm.taobao.org => http://npmmirror.com
* http://registry.npm.taobao.org=> http://registry.npmmirror.com
NVM:
建议,用NVM管理版本 , 不要用nvm下载node. 各种问题. 很艹旦. NVM的另一种使用方式. NVM的新的使用姿势
安装yarn:
npm install -g yarn
yarn 的文档: https://www.yarnpkg.cn/
yarn 的命令文档: https://www.yarnpkg.cn/cli/install
npm 设置ali 源:
npm config set registry https://registry.npmmirror.com/
# 查看
npm config get registry
yarn 设置 ali 源:
yarn config set registry https://registry.npmmirror.com/
# 查看
yarn config get registry
网友评论