DEV Community

Discussion on: Modular Monoliths: Have we come full circle?

Collapse
 
infoxicator profile image
Ruben Casas

Yeah it is a concern, but it is not as bad as before if implemented correctly, for example the react components can be designed in such a way that their interface with the data is abstracted so as far as the components are concerned the data can come from REST/GraphQL or the database. If decoupled and designed this way then it is just the case of swapping those adaptors in the future if needed.

Collapse
 
sqlrob profile image
Robert Myers • Edited

"If implemented correctly" is doing a lot of work there. That is way too rare a beast to depend on.

ETA: And the abstraction you're describing is... MVC.

Thread Thread
 
infoxicator profile image
Ruben Casas

The answer if we are coming full circle is likely yes then 😅