4

Are most web applications following MVC pattern?

Comments
  • 1
    📌
  • 2
    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
  • 0
    @joas ummm what’s the meaning of it? Fix?
  • 1
    @AleCx04 hi! Thank you for your reply! If so, how many web application patterns currently definable? Is it countless?
  • 2
  • 2
    @creativeJay not necessarily countless. But there are a good amount of them, for the most part they are very similar.
  • 6
    No. Most I know are following the WTF pattern.
  • 1
    Wrong panel, bud
  • 3
    I'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.
  • 2
    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
  • 1
    📍
Add Comment