本文主要是介绍安装node,淘宝镜像cnpm及切换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
npm 中文文档
node 安装
- 推荐官网下载:https://nodejs.org/en/download/
cnpm 安装
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm 切换为 cnpm
npm config set registry https://registry.npm.taobao.org
cnpm切换为npm: npm config set registry https://registry.npmjs.org
查看是否成功
npm config get registry
成功则显示(npm切换cnpm): https://registry.npm.taobao.org/
成功则显示(cnpm切换npm): https://registry.npmjs.org/
升级npm (@后面加指定版本号)
npm install npm@7.21.1 -g
这篇关于安装node,淘宝镜像cnpm及切换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!