Node-Red configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

is_job_running.js 305B

12345678910
  1. const CronJob = require('../lib/cron.js').CronJob;
  2. console.log('Before job instantiation');
  3. const job = new CronJob('* * * * * *', function() {
  4. const d = new Date();
  5. console.log('Every second:', d);
  6. });
  7. console.log('After job instantiation');
  8. job.start();
  9. console.log('is job running? ', job.running);