lver-cmp
v0.1.1
Published
Compare your modules against their latest version
Downloads
38
Readme
Lver Cmp
Point this bad boy at your package.json and it will return a descriptive object of all the current versions of each module you're running along with the latest versions published.
Example
var lverCmp = require("lver-cmp");
lverCmp("../package.json").subscribe(console.log);
/*
Prints:
{ lver: { current: '0.1.1', latest: '0.1.1' },
rx: { current: '2.*.*', latest: '2.2.9' } }
*/