したがって、https://npmjs.org/package/node-scheduleを使用していくつかのタスクをスケジュールしていますが、node.js にはやや新しいものであり、関数を定義して呼び出すときに「インライン」で関数を作成する理由がわかりません。正しくスケジュールされず、すぐに実行されて終了します。
job = schedule.scheduleJob({}, function (){console.log('one minute')});
動作しますが、
function test(){
console.log('one minute')
}
job = schedule.scheduleJob({}, test);
一度発火して終了します。