npm install timersA tiny cron-like tools for humman, implement by Node.js


---
```
$ npm install schedule
``
var every = require('schedule').every;
every('2s').do(function() {
// do your job
});
You can stop interval when some exception
`
var every = require('schedule').every;
var ins = every('2 seconds').do(cb);
process.on('uncaughtException', function() {
ins.stop();
})
``
- ms, millisecond, milliseconds
- s, second, seconds
- m, minite, minites
- h, hour, hours
- d, day, days
MIT