«
express 定时 schedule

时间:2023-6-25    作者:熊永生    分类: express


import express from "express"
import schedule  from "node-schedule"
const app = express();

schedule.scheduleJob('10 * * * * *', function(){
    console.log('The answer to life, the universe, and everything!');
});

// 启动服务器
app.listen(3000, () => {
  console.log('Server started on port 3000');
});