使用npm安装软件包时报错:
npm WARN registry Unexpected warning for https://registry.npmjs.org/: Miscellaneous Warning EINTEGRITY: sha512
软件版本
- npm: 5.0.3
- node: v8.1.0
解决方法:
这是在github上找的一个方案:
m ./package-lock.json
rm -r ./node_modules
npm cache clear --force
参考:https://github.com/npm/npm/issues/17146