Hacker News new | ask | show | jobs
by btreecat 189 days ago
Doesn't even need to be a proxy, you can lay out your controller and endpoints like this just fine in most modern frameworks
1 comments

How do you do routing across services?
> How do you do routing across services?

Depends on your infra needs. Could easily be handled by the controller calling out to an external service. Like you do with a database.

You could use a proxy layer, but it isn't a requirement.