What is that of microservices?

Mikel
4 min readApr 18, 2020

A “microservices architecture” is an approach to developing a software application as a series of small services, each running autonomously and communicating with each other, for example, through HTTP requests to their APIs.

Typically, there are a minimum number of services that handle things common to others (such as database access), but each microservice is small and corresponds to a different area of the…

--

--