# 查看自己的安装源
npm config get registry
# 更换npm源为国内淘宝镜像
npm config set registry http://registry.npm.taobao.org/
# 或者更换为国内npm官方镜像
npm config set registry http://registry.cnpmjs.org/
# 还原npm源
npm config set registry https://registry.npmjs.org/
npm启动项目命令:
npm run dev
# 删除node_modules目录
rm -rf node_modules/
# 情况缓存
npm cache clean
查看版本
npm updated -d
全局卸载
npm uninstall -g npm
版本更新:
npm install -g npm 默认安装最新版本
查看模块所有版本:
npm view npm versions
npm版本为npm v9,降级到v8即可。
npm install -g npm@^8
标签:npm,set,install,命令,registry,版本,config From: https://www.cnblogs.com/beichengshiqiao/p/17582404.html