npm install --force和npm install --legacy-peer-deps之间的区别是什么?

1yjd4xko  于 2022-11-14  发布在  其他
关注(0)|答案(1)|浏览(989)

我正在尝试使用npm install为一个项目安装node_modules。但是它失败了。

错误日志

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: my-first-app@0.0.0
npm ERR! Found: @angular/compiler@11.0.9
npm ERR! node_modules/@angular/compiler
npm ERR!   @angular/compiler@"~11.0.0" from the root project
npm ERR!   peer @angular/compiler@"11.0.9" from @angular/compiler-cli@11.0.9
npm ERR!   node_modules/@angular/compiler-cli
npm ERR!     dev @angular/compiler-cli@"~11.0.0" from the root project
npm ERR!     peer @angular/compiler-cli@"^11.0.0" from @angular-devkit/build-angular@0.1100.7
npm ERR!     node_modules/@angular-devkit/build-angular
npm ERR!       dev @angular-devkit/build-angular@"~0.1100.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/compiler@"11.1.2" from @angular/localize@11.1.2
npm ERR! node_modules/@angular/localize
npm ERR!   peerOptional @angular/localize@"^11.0.0" from @angular-devkit/build-angular@0.1100.7
npm ERR!   node_modules/@angular-devkit/build-angular
npm ERR!     dev @angular-devkit/build-angular@"~0.1100.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /Users/amit/.npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/amit/.npm/_logs/2021-02-04T17_58_24_981Z-debug.log

日志建议使用npm install --forcenpm install --legacy-peer-deps
我想了解npm install --forcenpm install --legacy-peer-deps之间的基本区别。
另外,如果--force的性能优于--legacy-peer-deeps,或者--legacy-peer-deeps优于--force,那么最好使用哪一种?
任何建议/指点都是非常值得赞赏的。谢谢!

xam8gpfp

xam8gpfp1#

两者的区别如下
--legacy-peer-deps:安装时忽略所有peerDependencies,采用npm版本4到版本6的样式
--strict-peer-deps:失败并中止遇到任何冲突的peerDependencies的安装过程。默认情况下,npm只会因根项目的直接依赖项导致的peerDependencies冲突而崩溃。
--forces :将强制npm获取远程资源,即使磁盘上存在本地副本。

相关问题