お勧めしnode-cron
ます。cronパターンを使用してタスクを実行できます。
'* * * * * *' - runs every second
'*/5 * * * * *' - runs every 5 seconds
'10,20,30 * * * * *' - run at 10th, 20th and 30th second of every minute
'0 * * * * *' - runs every minute
'0 0 * * * *' - runs every hour (at 0 minutes and 0 seconds)
しかし、より複雑なスケジュールも
'00 30 11 * * 1-5' - Runs every weekday (Monday through Friday) at 11:30:00 AM. It does not run on Saturday or Sunday.
サンプルコード:10分ごとにジョブを実行:
var cron = require('cron');
var cronJob = cron.job("0 */10 * * * *", function(){
// perform operation e.g. GET request http.get() etc.
console.info('cron job completed');
});
cronJob.start();
node-cron wiki で他の例を見つけることができます
cron構成の詳細については、cron wikiをご覧ください。
私は多くのプロジェクトでそのライブラリを使用してきました。お役に立てば幸いです。