Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Most definitely not. It ain't a silver bullet. But that ain't the case, the reality is that there are places that are forced to push shit spaghetti code out there because of legacy issues or lack of knowledge.
This to me was.....a rude awakening when I started.....and even to this day -
@AleCx04 hi! Thank you for your reply! If so, how many web application patterns currently definable? Is it countless?
-
@creativeJay not necessarily countless. But there are a good amount of them, for the most part they are very similar.
-
Wack63116yI'd say a fair share has MVC, however also MCCV is gaining traction as in model and controller on the server (serving an api) and then again a controller and view on the frontend (either in javascript or native mobile apps)
With MVC you can still do a lot of things wrong. Do you have fat or thin controllers/models? In the end I'd say the architecture doesn't matter that much. The only two important things are
1) don't fucking use wordpress!
2) keep the code logical organized, so a new person would be able to find what they are looking for. -
also, MVC is not exclusive to web application, it's a general way of structuring your code
another one that might also be worth mentioning is MVVM
Related Rants
Are most web applications following MVC pattern?
question
patterns
mvc
web