How to develop microservice architecture in nodejs

7/8/2019

How can I build microservice architecture using nodejs express any guide or reference thanks in advance

-- hassanqshi
docker
express
kubernetes
microservices
node.js

1 Answer

7/8/2019

In a microservices architecture, we build services which are loosely coupled. So in node js you have to create loosely coupled services which can interact with each other to serve your application data. For small size application, you can have like 10-100 services. After you have a few services, you can containerize then for making them more isolated. Docker and k8s will help in putting services in containers and maintaining them automatically.

-- prisar
Source: StackOverflow