npm安装依赖报 npm ERR! code Z_BUF_ERROR npm ERR! errno -5 npm ERR! zlib: unexpected end of file 这个错误解决方案

安装依赖前

方案1

先把淘宝的镜像装上了
npm install -g cnpm --registry=https://registry.npm.taobao.org

npm config get proxy
npm config get https-proxy
这两个都返回null才对
如果不是
执行
npm config set proxy null
npm config set https-proxy null

设置源
npm config set registry http://registry.cnpmjs.org/

方案二
清除缓存
npm cache clean --force
安装依赖
npm install

补充 : 什么是cnpm
官网:“这是一个完整 npmjs.org 镜像,你可以用此代替官方版本(只读),同步频率目前为 10分钟 一次以保证尽量与官方服务同步。”

你可能感兴趣的:(笔记)