Goglides Dev 🌱

Discussion on: Explain Like I'm 5: What is Monolithic and Microservice application?

Collapse
 
prashant profile image
Prashant Pandey

Monolithic means all-in-one. In other words, a monolithic application is like a single big application source code where code exists for all of the functionality in one place. It is a traditional way of building applications. While In Microservice application application is split into small pieces called services. Each service has its own functionality. It is a modern way of building application. Maintaining and updating Microservice application are easier compared to Monolithic Application.