码迷,mamicode.com
首页 > 其他好文 > 详细

node-schedule定时任务

时间:2016-05-07 16:39:37      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

https://github.com/node-schedule/node-schedule

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 j = schedule.scheduleJob(‘42 * * * *‘, function(){
  console.log(‘The answer to life, the universe, and everything!‘);
});

j.cancel();

node-schedule定时任务

标签:

原文地址:http://www.cnblogs.com/w-jinfeng/p/5468394.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!