node-schedule
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/mattpat/node-schedule
- 软件文档: https://github.com/mattpat/node-schedule
软件介绍
node-schedule 是 Node.js 上一个类似 crontab 的定时任务模块。
示例代码:
var schedule = require('node-schedule');
var date = new Date(2012, 11, 21, 5, 30, 0);
var j = schedule.scheduleJob(date, function(){
console.log('The world is going to end today.');
});
