当本地 npm 包版本与项目配置不一致时经常出现各种引用错误,本文记录解决方案。
问题复现
- 在已经配置好的 npm 环境种,修改 package.json 后经常产生错误:
npm ERR! Cannot read properties of null (reading 'pickAlgorithm')
npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersAdministratorAppDataLocalnpm-cache_logs2022-07-04T01_55_30_086Z-debug-0.log
解决方案
- 清除缓存
npm cache clear --force
之后再重新安装依赖npm install
npm cache clear --force
npm install
- 若出现端口号冲突
1、关闭该端口的进程;
2、通过
npm serve --port 4201
指定端口号打开
参考资料
- https://blog.csdn.net/m0_63760882/article/details/124852062