window安装教程 https://nodejs.cn/download/current/ 到下载解压
在 目录下,创建 “node_global” 和 “node_cache” 两个文件夹
进入环境变量,编辑【系统变量】下的变量【Path】
D:1kaifahuanjingnode-v20.6.0-win-x64node_global
设置全局模块的安装路径到 “node_global” 文件夹,
npm config set prefix “D:1kaifahuanjingnode-v20.6.0-win-x64node_global”
设置缓存到 “node_cache” 文件夹
npm config set cache “D:1kaifahuanjingnode-v20.6.0-win-x64node_cache”
切换镜像
、临时切换
npm –registry https://registry.npm.taobao.org install express
1
②、长期切换
npm config set registry https://registry.npm.taobao.org
1
③、切换官方镜像
npm config set registry https://registry.npmjs.org/
验证切换是否成功
npm config get registry
cnpm生效
npm install -g cnpm –registry=https://registry.npm.taobao.org
正文完