运行 节点计划启动时的任务?

Run tasks at startup in node-schedule?

使用 https://github.com/node-schedule/node-schedule 时,我想 运行 作业在定义后定期执行,但它确实会在一段时间后启动。 目前,我将其定义为:

void myFunction();
scheduleJob({ rule: "*/5 * * * *" }, () => {
  void myFunction();
});

有更好的方法吗?

Node schedule 没有在计划作业初始化时调用函数的功能。

一种方法是按照您定义的方式进行操作。

另一种方法是使用 cron npm 包。

const cronJob = require('cron').CronJob;

const myJob = new cronJob('"*/5 * * * *"',() => {
    myFunction();
 },() => {
 },
 true
); 

此处,true 标志向模块实现发出信号 运行 计划作业初始化函数。