Created
April 23, 2017 08:26
-
-
Save chuck0523/fbbc9d099cbbc8e5c80111b41212948c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CronJob = require('cron').CronJob | |
new CronJob({ | |
cronTime: '0 0 12 * * *', | |
onTick: () => { /* */ }, | |
start: true, | |
timeZone: 'Asia/Tokyo', | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment