Advertisement
Anatolyukropov

Cron-Node

Aug 12th, 2020
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { CronJob } from 'cron';
  2. const job = new CronJob(
  3.       '00 00 00 1 * *', // срабатывает раз в месяц 1 числа в 00:00:00
  4.       () => {
  5.         this.handleTimer();
  6.       },
  7.       null,
  8.       true,
  9.       'Europe/Moscow',
  10.     );
  11. job.start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement