Category: NestJS

January 17, 2023 / CodeMoments

Monorepo and Microservices are two completely different concepts yet often used interchangeably You might have managed multiple repositories for inter related projects. Monorepo simply puts all these inter related projects into one single repositories. This way you have to manage one single repository for all the projects. You setup deployment…

January 16, 2023 / CodeMoments

The hottest topic in the software industry is microservices architecture. But, what is it? Microservices architecture is just a software development architecture that breaks your software into multiple small loosely coupled simpler services. These services are small in size, serves a specific purpose, very easy to maintain. Teams can work…