Global ContextHolder

I'm using Hono on cloudflare workers and my handle functions look like:

async handle(ctx: Context<Env>) { .. }


and I'm then passing that ctx that to other method calls in multiple layers.
which feels quite cumbersome.

is it possible to create some global ContextHolder where I can set and get the ctx from? Like a request-scoped holder...

I wonder how others do this?
Was this page helpful?