- 创建本地目录,并执行配置下载位置
npm config set cache “D:\nodereps\npm_cache”
npm config set prefix “D:\nodereps\npm_global”
2.查看下载位置
npm config ls
默认下载位置如下 ,C:\Users\Administrator\AppData\Roaming,AppData 是隐藏文件夹
执行配置后
3.在C:\Users\用户名.npmrc 可以查看到配置
4. 输入 npm get registry:查看当前镜像源为https://registry.npmjs.org/(npm默认镜像源)。
5. 输入npm config set registry xxx(镜像源地址)。文章来源:https://www.toymoban.com/news/detail-530625.html
小编以国内淘宝镜像为例:npm config set registry https://registry.npm.taobao.org。文章来源地址https://www.toymoban.com/news/detail-530625.html
到了这里,关于nodejs配置npm下载依赖位置和镜像源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!