Is there a job scheduler library for node.js?
Is there some cron like library that would let me schedule some function to be ran at certain time (15:30 for example, not x hours from now etc)? If there isn't this kind of library how this should be implemented? Should I just set callback to be called every second and check the time and start jobs scheduled for the time or what?
node-cron做的就是我所描述的
node-schedule Node的cron-like和not-cron-like作业调度程序。
agenda is a Lightweight job scheduling for node. This will help you.
链接地址: http://www.djcxy.com/p/14844.html上一篇: tasklets究竟是如何在内部安排的?
下一篇: 是否有node.js的作业调度程序库?