Skip to content

Instantly share code, notes, and snippets.

@marttp
Created July 28, 2019 06:41
Show Gist options
  • Save marttp/7b711672a052dc18adf6253404eedb7a to your computer and use it in GitHub Desktop.
Save marttp/7b711672a052dc18adf6253404eedb7a to your computer and use it in GitHub Desktop.
const config = require('./config');
const { JOB_SCHEDULE } = config;
const cron = require('node-cron');
cron.schedule(JOB_SCHEDULE, () => {
console.log('Run task every minute');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment