Microservices shared front end aka How does servicestack find services?

If your Services are split across multiple .dlls, you can just add the Assemblies in ServiceStack’s AppHost constructor, if you’re splitting your System into multiple Microservices than we recommend using the Service Gateway which allows you to make intra Service API calls with the same API irrespective of whether it’s calling an internal Service or external Service. Built on top of the Service Gateway are some Service Discovery solutions that take care of automatically discovering available services and will automatically route them to the appropriate Service.

Also my recommendation for enabling Auth across multiple microservices is to use JWT.

Finally a word of caution, whilst we believe designing for Microservices provides benefits, I’d only consider doing so if they provide some tangible value. e.g. StackOverflow doesn’t use Microservices for performance/latency, Basecamp doesn’t see any value in Microservices for small/medium-sized projects and many other prominent industry leaders also suggest going monolith first or that you can get more benefits with less trade-offs by modularizing your system.

ServiceStack’s lets you “design for Microservices” by being able to split Services across multiple .dlls and decouple inter-service dependencies behind its Service Gateway so you can delay physically decoupling your architecture into multiple deployment units since it’s naturally and easy to do once you identify there’s value in it.