Emits update events from the npm repository, or any node modules repository.
const NPM = require('npm-updates');
const npm = new NPM();
npm.on('update', (info) => {
console.log('package', info.name, 'was updated to v' + info.version);
});
npm.on('new', (info) => {
console.log('new module!', info.name);
});
Creates a new instance. options
can have
autoStart
- Defaults totrue
. Will auto start requesting the registry for updates. If disabled, you can usestart()
.uri
- You can set the couchdb registry uri that it checks with this.
Starts receiving updates.
Stops requesting updates and emitting events.
Object
Change events from the couchdb _changes
feed.
{ seq: 99230,
id: 'newsemitter',
changes: [ { rev: '5-aca7782ab6beeaef30c36b888f817d2e' } ] }
Object
- Info.
First version of module published. info
is equivalent to its package.json
contents.
Object
- Info.
Module is updated to a newer version. info
is equivalent to its package.json
contents.
Object
- Info.
Emitted for both new
and update
events. info
is equivalent to its package.json
contents.
string
- Name.
Module was deleted from the registry.
npm install npm-updates
Tests are written with mocha
npm test