欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

node在指定时间执行代码

程序员文章站 2022-06-15 22:53:16
在项目中我们有时需要在指定的时间来执行一定的时间,比如下午2点提示一下安装npm install node-schedule插件的格式介绍* * * * * *┬ ┬ ┬ ┬ ┬ ┬│ │ │ │ │ ││ │ │ │ │ └ day of week (0 - 7) (0 or 7 is Sun)│ │ │ │ └───── month (1 -...

在项目中我们有时需要在指定的时间来执行一定的时间,比如每分钟10s的时候提示一下

先安装需要的包

npm install node-schedule

插件的格式介绍

*    *    *    *    *    *
┬    ┬    ┬    ┬    ┬    ┬
│    │    │    │    │    │
│    │    │    │    │    └ day of week (0 - 7) (0 or 7 is Sun)    星期
│    │    │    │    └───── month (1 - 12)     月
│    │    │    └────────── day of month (1 - 31)     日
│    │    └─────────────── hour (0 - 23)      时
│    └──────────────────── minute (0 - 59)     分
└───────────────────────── second (0 - 59, OPTIONAL)   秒

设置时间

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

var rule = new schedule.RecurrenceRule();
rule.second = 10   // 设置你需要响应的时间

var j = schedule.scheduleJob(rule, function(){
  console.log("每分钟10s的时候提示一下");  
})

运行一下,运行一下,然后耐心等待就看的出效果了
node在指定时间执行代码
git地址: https://github.com/node-schedule/node-schedule

如有疑问或补充请提出来。
转载请附上链接,谢谢

本文地址:https://blog.csdn.net/qq_38158746/article/details/107387036

相关标签: nodejs