1

I want to look at upgrading NPM on a project I'm working on from 5.8.0 to the latest version.

Is this something that is safe to do without breaking any packages i have installed? And if there's a chance it might, what is the best method for testing those packages to make sure everything is running correctly still?

MarkHughes88
  • 591
  • 3
  • 11
  • 25

1 Answers1

0

Updating NPM is unlikely to break anything. However your packages may require a certain version of Node.js to function properly.

There also isn't really a "best method" to check if everything runs correctly. Ill refer you to this answer which has a few options you can try.

Mr. Simmons
  • 448
  • 3
  • 14