设置默认使用本地缓存
npm config set prefer-online false
安装Nodejs时会自动安装npm,但是局路径是C:\Users\Caffrey\AppData\Roaming\npm
C:\Users\Administrator\AppData\Roaming\npm
默认的缓存路径是C:\Users\Caffrey\AppData\Roaming\npm-cache;
C:\Users\Administrator\AppData\Local\npm-cache
文章来源:https://www.toymoban.com/news/detail-802033.html
查看npm的prefix和cache路径配置信息
npm config get cache
npm config get prefix
设置路径
npm config set prefix "D:\ProgramFile\nodejs\node_modules\node_global"
npm config set cache "D:\ProgramFile\nodejs\node_modules\node_cache"
设置npm镜像源:文章来源地址https://www.toymoban.com/news/detail-802033.html
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
到了这里,关于npm依赖库备份的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!