npm安装依赖时报 “xxx is not in the npm registry“错的解决办法之一

一. 场景

我在安装better-scroll2.0没问题,但是在装它的下拉加载更多和上拉刷新插件时报了这个错,如下:
npm安装依赖时报 “xxx is not in the npm registry“错的解决办法之一_第1张图片

二. 解决办法

2.1 输入npm config list 命令查看当前配置情况,如下:
npm安装依赖时报 “xxx is not in the npm registry“错的解决办法之一_第2张图片
2.2 将npm的获取地址从https改为http
在这里插入图片描述
在这里插入图片描述
2.3 查看修改后的配置npm config list
npm安装依赖时报 “xxx is not in the npm registry“错的解决办法之一_第3张图片
2.4 重新安装之前装不起的依赖,成功安装
npm安装依赖时报 “xxx is not in the npm registry“错的解决办法之一_第4张图片
(完)

你可能感兴趣的:(npm,vue)