Chris Phillips
Chris Phillips

Reputation: 2134

How do I install popper v2?

Running the command:

npm install popper.js --save

will return the warning message:

npm WARN deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1

what the is npm command for installing popper v2?

Upvotes: 3

Views: 7651

Answers (1)

Chris Phillips
Chris Phillips

Reputation: 2134

npm install @popperjs/core --save

This was a little more straight-forward than I was expecting. The formatting differences between v1 and v2 definitely threw me off

Upvotes: 5

Related Questions