Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 296 Bytes

cron.md

File metadata and controls

15 lines (10 loc) · 296 Bytes

함수 스케쥴링 돌리기

  • cron을 사용해서 아래와 같은 래퍼함수를 써야 함

    import { CronJob } from 'cron'
    
    function runSomething() {
    
    }
    
    function startScheduledJob() {
     return new CronJob('* * * * *', runSomething).start()
    }