Show HN: Lightweight job scheduling for Node.js
1–10 of 17 posts
Re: Show HN: Lightweight job scheduling for Node.js
#2Re: Show HN: Lightweight job scheduling for Node.js
#3I am working on a scheduled reminder (email/SMS service) to send notifications. I've been looking for a scheduling/Cron service for node. There are few I am evaluating. I will consider yours. If I reboot the machine or node server, will it automatically queue up the jobs?
Re: Show HN: Lightweight job scheduling for Node.js
#4Re: Show HN: Lightweight job scheduling for Node.js
#5Curious, why the choice of mongo vs something like redis?
Re: Show HN: Lightweight job scheduling for Node.js
#6Re: Show HN: Lightweight job scheduling for Node.js
#7Curious, why the choice of mongo vs something like redis?
Re: Show HN: Lightweight job scheduling for Node.js
#8Curious, why the choice of mongo vs something like redis?
I thought the same. For redis there's Kue, which looks a lot more feature complete. https://github.com/learnboost/kue
Re: Show HN: Lightweight job scheduling for Node.js
#9I also built replacements for setTimeout and setInterval to use Later schedules, so it should be easy enough to plug it into your solution.
Re: Show HN: Lightweight job scheduling for Node.js
#10If you wanted even more flexible schedules, you might want to look into Later.js ( http://bunkat.github.io/later/ ), a small library I created just for this purpose. It supports composite and exception schedules, cron schedules, and lots of different time periods. Everything can be specified using an API or using English text. I also built replacements for setTimeout and setInterval to use Later schedules, so it shou…