Node.js中类似 crontab 的定时任务模块:node-schedule
jopen
10年前
node-schedule 是 Node.js 上一个类似 crontab 的定时任务模块。它可以让你在特定的日期安排执行工作(任意函数),带有可选的循环规则。
var schedule = require('node-schedule'); var j = schedule.scheduleJob('42 * * * *', function(){ console.log('The answer to life, the universe, and everything!'); }); And: var j = schedule.scheduleJob('0 17 ? * 0,4-6', function(){ console.log('Today is recognized by Rebecca Black!'); });