UNMET PEER DEPENDENCY jquery@>=3.0.0 and popper.js@^1.11.0
See original GitHub issueI tried to install the latest version of Bootstrap 4 via : npm install bootstrap@4.0.0-beta
But I faced this problem :
+-- bootstrap@4.0.0-beta
+-- font-awesome@4.7.0
+-- UNMET PEER DEPENDENCY jquery@>=3.0.0
`-- UNMET PEER DEPENDENCY popper.js@^1.11.0
npm WARN bootstrap@4.0.0-beta requires a peer of jquery@>=3.0.0 but none was installed.
npm WARN bootstrap@4.0.0-beta requires a peer of popper.js@^1.11.0 but none was installed.
npm WARN b4starter@1.0.0 No repository field.
Why NPM doesn’t install the dependencies?
Issue Analytics
- State:
- Created 6 years ago
- Comments:32 (8 by maintainers)
Top Results From Across the Web
UNMET PEER DEPENDENCY jquery@>=3.0.0 & popper.js ...
The problem was reported to the Bootstrap development team in this issue. In principle, Bootstrap 4 can be used without jQuery and Popper, ......
Read more >Building Simple Rails with React Web application(Part 2)
warning " > bootstrap@5.1.3" has unmet peer dependency "@popperjs/core@^2.10.2". [4/4] Building fresh packages...success Saved lockfile.
Read more >bootstrap 4.3 1 requires a peer of jquery 1.9 1 3 but none is ...
bootstrap@4.5.0 requires a peer of popper.js@^1.16.0 but none is installed. warning "strapi-admin > bootstrap@4.5.0" has unmet peer dependency " ...
Read more >glove_vocab.250k.txt - Bar Ilan NLP Lab
... nicaragua xm freshness buckingham dependencies unleash inferno jt costello 740 receptionist waxing 10m barbeque scrambled 5:15 impotence 9-11 chronology ...
Read more >Unmet Peer Dependency popper.js - anycodings.com
How do I get around this? Install of jquery using npm shows the wrong idea dependency on popper.js that's not in npm use...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

because you can use Bootstrap without that if you just need our CSS, but if you want to remove those warnings you can do
npm i --save jquery popper.jsin our next release, you’ll only have a warning about jQuery because currently we need Popper.js in our build system
That would be perfect! 👍