npm cron v1.4.0无法正常工作

时间:2018-08-24 21:30:46

标签: node.js npm cron

常量     CronJob = require('cron')。CronJob;

(异步函数(){

// Defining the cron
const job = new CronJob({
    cronTime: '* * * * * *',
    onTick: () => {console.log("ok")},
    timeZone: 'Asia/Kolkata',
    start: true
});

})();

cron版本1.4.0

在v1.4.0上每秒都无法正常打印 而v1.3.0每秒可以打印一次

那是一个错误吗?

1 个答案:

答案 0 :(得分:1)

此包装上的API可能已更改...

这是来自github https://github.com/kelektiv/node-cron#readme

上最新文档的示例
var CronJob = require('cron').CronJob;
new CronJob('* * * * * *', function() {
  console.log('You will see this message every second');
}, null, true, 'America/Los_Angeles');

我会尝试一下