Simplify Cron Job Creation in Meteor


Summary of my bookmarked Github repositories from Nov 25th, 2015

Github repositories

  • chfritz/meteor-easycron

    meteor-easycron is a Meteor package that simplifies the creation of cron-like recurring jobs. With a straightforward usage, you can define a schedule object for each job, specifying values for minutes, hours, and days. Using an empty object {} means the job runs every minute, while {day: 12} runs it every minute on the 12th day of the month. Examples demonstrate different scenarios, such as executing a function every minute, every hour at the 24th minute, or every minute between 8 am and 9 am. Another example runs a function once a month at noon on the 13th day.