Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm install only if package missing or out-of-date compared to package.json

Tags:

npm

I want to be able to compare my locally installed packages against my project package.json file without making a call against the npm online repo. If there is a package that is out of date based on the package.json file, then and only then will it go to the npm online repo and install the package.

The reason for this is that I want to be able to update the package.json file to require a newer version of a package, commit this change to the project repo and when other developers on the team get latest their npm package is updated. I do not want to slow down the process if everything is up-to-date or cause the build to fail if access to the npm repo or the internet is down.

I am wondering if this is an already solved use-case or do I need to parse the package.json file and compare it to a "npm ls" output myself?

like image 548
Paul Redman Avatar asked Nov 01 '22 04:11

Paul Redman


1 Answers

you will need to setup a local repository (by duplicating the NPM couchdb localy) ( see https://stackoverflow.com/a/7577265/406458)

then you could use npm-check-updates.

npm-check-updates will give you a list of packages that can be updated in your package.json file see https://www.npmjs.org/package/npm-check-updates

$ npm-check-updates

"connect" can be updated from 2.8.x to 2.11.x (Installed: 2.8.8, Latest: 2.11.0) "commander" can be updated from 1.3.x to 2.0.x (Installed: 1.3.2, Latest: 2.0.0)

Run 'npm-check-updates -u' to upgrade your package.json automatically Check global npm packages for updates:

$ npm-check-updates -u

like image 86
Etienne Avatar answered Dec 20 '22 00:12

Etienne