nodejs配置
1、设置全局模块的安装路径
命令:
npm config set prefix "D:\nodejs\node_global"
2、设置缓存
命令:
npm config set cache "D:\nodejs\node_cache"
3、设置环境变量
Path中添加
D:\nodejs\node_global
新建 NODE_PATH,值:D:\nodejs\node_global\node_modules\
npm install -g vue
4、设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org
查看使用的镜像源:npm config get registry
5、安装cnpm
命令:
npm install -g cnpm --registry=https://registry.npm.taobao.org
6、其它
查看nodejs配置信息:
npm config list --json
查看全局模块的安装路径:npm root -g
详细参考---->>> https://blog.csdn.net/qq_41521682/article/details/122800226