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

Ami*_*mar 9 node.js npm node-modules typescript angular

我正在尝试使用npm install. 但它失败了。

错误日志

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
Run Code Online (Sandbox Code Playgroud)

日志建议使用npm install --forcenpm install --legacy-peer-deps

我想了解npm install --force和之间的基本区别npm install --legacy-peer-deps

另外,如果性能--force优于--legacy-peer-deeps或反之,更优选使用哪一个?

任何建议/指示都非常值得赞赏。谢谢!

Sur*_*een 2

两者的区别如下

--legacy-peer-deps:安装时忽略所有对等依赖项,采用 npm 版本 4 至版本 6 的风格

--strict-peer-deps:遇到任何冲突的对等依赖项时失败并中止安装过程。默认情况下,npm 只会因根项目的直接依赖项引起的 PeerDependency 冲突而崩溃。

--forces :即使磁盘上存在本地副本,也会强制 npm 获取远程资源。