Ask HN: What's the simplest way to run a cron script on the cloud?

5 points by 1penny42cents ↗ HN
I have a proof-of-concept script that should run once a day. I would prefer to not run a server all day for a one-time job. What's your preferred way to provision something like this on the cloud?

7 comments

[ 2.9 ms ] story [ 29.1 ms ] thread
Azure has logic app service.

But it depends on what you already have. I have a side project with a ec2 running node so I just use cron from npm (rather than the os cron) to do the trick and pm2 to keep that node running.

Heroku with the Heroku scheduler addon.
Cron on app engine is free, assuming your script is light enough. You may need a paid account if you have to connect externally, but you can set $0 as total budget.