Express app wrapped with Effect
I just got interested in Effect since I believe it could solve a lot of minor problems I've been facing with concurrency. If I'd like to control how many connections are open for certain requests, do I need to have my entire application running with Effect as the final say in running? For example a user might query an endpoint and spawn about 30 requests to outside api, another user at the same time might want/need to do the same thing. I'd like to ensure a maximum number of requests are ever hitting that external api. I'd assume I can only have that by my entire application having some sort of Effect context.
