3
donuts
5y

Is there some sort of tool where I can put in a package.json and it show what the latest version of each can be used or which package(s) is blocking any upgrade?

Have a project that has lots of dependencies but they are very old and some maybe deprecated or are preventing new libraries from being installed

Comments
  • 1
    We could prob use this too if we had the time
  • 3
    For the first part try 'npm outdated' in the folder with the package.json. For the second part you need a tool like npm-why or depcheck.
  • 1
    Build it?
  • 1
    I use npm-gui for a visual representation of what's outdated (also includes buttons for upgrading etc)
  • 0
    I use node-check-update for this :-)
Add Comment