如何每天 运行 API 在节点 js 中进行 GET 调用 11:00pm

How to run a API GET call in node js everyday at 11:00pm

我在节点 js 中有一个 aws API GET 调用。

http://localhost:3000/amazon/api

我已经在这次通话中提到了必要的功能。我想 运行 这个电话每天在 11:00PM 使用节点 js。我浏览了 cron and other scheduling 个包文件。有点混乱。

您可以使用node-schedule 模块来安排特定时间的任务。

每天上午 11 点的一个简单示例可能如下所示:

var schedule = require('node-schedule');

var j = schedule.scheduleJob('* * /11 * * *', function(){
  console.log('Run your process here');
});