Monolith — single codebase. Modular Monolith — well-structured modules within monolith.
Monolith:
Monolith:
[User][Order][Payment][Auth][Notification]
All tightly coupled, shared database
Difficult to extract services
Modular Monolith:
Modular Monolith:
[User Module] ←interface→ [Order Module]
Each module has own logic
Can extract to microservice later
Key differences: