TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Progressive Microservices Framework for Node.js

1 pointsby pibiover 3 years ago

1 comment

pibiover 3 years ago
I&#x27;m working with microservices all the time. Even when working solo. It&#x27;s easy to focus on a single domain while developing a single part of the system, just like coding modules or classes.<p>That said, I&#x27;m always wondering why we are conflating so many things when talking about microservices: deployment and scalability, multi-repo and code structure, integration tests and distributed transactions, and so on. I mean: you can definitely build your application as a monolithic process with a microservices&#x27; architecture. It&#x27;s just separation of concerns all the way down and a proper abstraction for the communication channel between the &quot;modules&quot;. You don&#x27;t need to embed your deployment structure in your repos and your code. These are &quot;framework&quot; problems. Just use one that abstracts all the deployment details until it&#x27;s time to push the code to prod, and you have to split your code in different containers. This is why I&#x27;m now settled on Moleculer (<a href="https:&#x2F;&#x2F;moleculer.services&#x2F;" rel="nofollow">https:&#x2F;&#x2F;moleculer.services&#x2F;</a>). It just works.