Skip to content

Commit

Permalink
modify README and amount of growl, interval
Browse files Browse the repository at this point in the history
  • Loading branch information
hideo55 committed Aug 14, 2011
1 parent b808622 commit 4c46628
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ This is NPM Growler: fetches NPM recent update modules and growls as new activie
## INSTALLATION

clone from github.

$ git clone git://github.com/hideo55/node-npm-growler.git

npm link

$ npm link node-npm-growler

and run

$ npm-growler

## AUTHOR
Expand Down
4 changes: 2 additions & 2 deletions npm-growler.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var lru = require('lru-cache');

var options = {
host: 'search.npmjs.org',
path: '/_view/updated?limit=50'
path: '/_view/updated?limit=20'
};

var Seen = {};
Expand Down Expand Up @@ -39,4 +39,4 @@ var checkUpdate = function(){

console.log('Start growl notify...');
checkUpdate.call();
setInterval(checkUpdate, 60000);
setInterval(checkUpdate, 300000);

0 comments on commit 4c46628

Please sign in to comment.