Home > Mobile >  Deploying cron job node.js script to AWS
Deploying cron job node.js script to AWS

Time:12-15

I am pretty new to AWS. We're looking for a way to execute our node.js script like a cron job. There is Elastic Beanstalk application which runs a web server in node. In the same git repository, we'll have a few lightweight services that will run periodically, probably one minute, to clean something from DB, sync some external data etc, nothing major.

What would be the best way to do this? I would like to avoid using lambda, since we want the code to be locally testable and present in the repository.

Thanks in advance

CodePudding user response:

Any service that can be subscribed to enter image description here

Reference - Using API destinations with Amazon EventBridge

  • Related