나는 추천 할 것이다 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 에서 더 많은 예제를 찾을 수 있습니다
크론 구성에 대한 자세한 내용은 크론 위키 에서 찾을 수 있습니다.
많은 프로젝트에서 해당 라이브러리를 사용하고 있으며 작업을 수행합니다. 도움이 되길 바랍니다.