We are looking to move all of our serverless functions to Cloudflare workers, one of the things we a

We are looking to move all of our serverless functions to Cloudflare workers, one of the things we are trying to understand is how to best structure our project. Originally we wanted to have a single Worker, but with our 20-30 functions they each need their own different CRON schedules, so it seems like we'll have to make every function its own worker. However, there is a lot of shared logic between all these functions that i'd hate to duplicate many times over and have to try and manage that. Is there any best practices on how to build a large set of workers that can share libs and also have CRON flexibility?
Was this page helpful?