nodejs_npm 环境设置
```shell
nodejs_npm 环境设置
---------------------------------------------
nodejs_npm 环境设置
安装 nodejs,
自动追加变量 系统变量 Path 追加 "E:\WorkTool_Install\node-v14.17.6_Install\"
设置 nodejs_npm 依赖包的全局安装设置,
cmd管理员> npm config set cache "E:\WorkTool_Install\node-v14.17.6_Install\node_cache"
cmd管理员> npm config set prefix "E:\WorkTool_Install\node-v14.17.6_Install\node_global"
npm get cache
npm get prefix
用户变量(添加):
NPM_GLOBAL "E:\WorkTool_Install\node-v14.17.6_Install\node_global"
Path 追加 "%NPM_GLOBAL%"
系统变量(添加):
Path 追加 "E:\WorkTool_Install\node-v14.17.6_Install\node_global\node_modules"
cmd管理员> npm config set cache "E:\WorkTool_Install\node-v14.17.6_Install\node_cache"
cmd管理员> npm config set prefix "E:\WorkTool_Install\node-v14.17.6_Install\node_global"
cmd管理员> npm install -g vue
+ vue@2.6.14
added 1 package from 1 contributor in 4.377s
查看得到 "E:\WorkTool_Install\node-v14.17.6_Install\node_global\node_modules\vue"
设置淘宝镜像
cmd管理员> npm config set registry https://registry.npm.taobao.org
cmd管理员> npm config get registry
cmd管理员> npm config list
>npm config ls -l | grep timeout "https://www.cnblogs.com/xuhongfei/p/17769162.html"
参考
npm 设置淘宝镜像的两个方法 https://www.jianshu.com/p/92116d8d2298
1.永久使用
npm config set registry https://registry.npm.taobao.org
这样配置以后都是用淘宝的镜像下载资源 国内的访问速度会比较快
2.直接安装使用
npm install -g cnpm --registry=https://registry.npm.taobao.org
以后使用cnpm 代替npm
推荐使用第一种方式 不改变原来的名称 只是换了一个下载资源
---------------------------------------------
```