node升级到最新版
首先清除npm缓存
npm cache clean -f
然后运行命令升级
npm install -g n --force
npm升级到最新版
更新命令
npm install -g npm
设置全局npm依赖存放路径
npm config set prefix "D:\soft\nodejs\node_global"
设置全局npm缓存路径
npm config set cache "D:\soft\nodejs\node_cache"
注意:修改之后需要配置环境变量
查看npm配置
npm config ls -l
使用nucm管理npm 账号
npm install -g nucm
建议使用管理员窗口运行
添加npm 账号
nucm add <username> <access_token>
<>里为参数 useranem可自定义
切换npm 账号
nucm use <username>
使用nrm管理npm 镜像
npm install -g nrm
建议使用管理员窗口运行
设置 npm 镜像地址
npm config set registry=http://registry.npmjs.org
查看镜像地址
nrm ls
切换镜像
nrm use taobao