美文网首页
npm常见问题解决

npm常见问题解决

作者: 测试有话说 | 来源:发表于2021-02-23 15:54 被阅读0次

    方案一(亲测已解决):

    清除缓存
    npm cache clean --force
    1
    再安装
    npm install

    方案二(亲测):
    第一次按照上面的方法 npm cache clean --force 轻松就解决问题了,但是今天我用的时候发现依然报错:

    npm ERR! Unexpected end of JSON input while parsing near...
    ......
    npm ERR! A complete log of this run can be found in:
    ......

    于是我就按着上次的方法发现不行,还是报错,我就又连着试了好几次还是不行
    后来查阅各种方案,发现只需要把镜像改一下就行了,具体看下面

    第一步还是:npm cache clean --force
    npm cache clean --force

    第二步:切换为淘宝镜像
    npm config set registry https://registry.npm.taobao.org/
    npm config get registry https://registry.npm.taobao.org/

    验证时候切换淘宝镜像成功,命令行输入: npm config list
    3.第三步:

    npm install

    注意:下面走捷径啦!!!!
    直接输入:npm install --global cnpm
    然后使用:cnpm install

    执行上面命令后,发现问题解决!!!
    最简单解决就是输入 npm install --global cnpm 然后使用 cnpm install 装包
    原因分析:npm官方服务器在国外,网络受阻性大、而淘宝的cnpm在国内,所以用淘宝的快就ok了

    相关文章

      网友评论

          本文标题:npm常见问题解决

          本文链接:https://www.haomeiwen.com/subject/lmrkfltx.html