Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
Model-View-Controller (MVC) is one of the most widespread and influential patterns in software architecture. Rumors of MVCâs death have been greatly exaggerated- it remains a useful pattern to understand. In this post, rather than reigning in the various definitions of MVC, I will highlight how it evolved into the modern web frameworks we know and love today.
Inception
In 1978, Trygve Reenskaugh and Adele Goldberg coined the name âModel-View-Controllerâ. Trygve believed MVC and its variants formed a Pattern Language, a shared language for people to talk about problems and their solutions. The concept of a software Pattern Language also influenced the Gang of Four to write the Design Patterns book. If MVC were included in the Design Patterns book, we would probably find it under the Behavioral Pattern section, hanging out with patterns like Mediator and Observer.
Hereâs Trygveâs retrospective paper in 2003, MVC, Its Past and Present. Trygve enumerates eleven patterns that form the MVC Pattern Language. Only two have stuck around in a significant way: Model/Editor Separation and Input/Output Separation, and I argue that these are essentially the same:
Variants where the input goes through the View are also common.
âThe View and Controller roles may be played by the same object when they are very tightly coupledââââTrygve Reenskaugh (a point which has been endlessly debated in the community)
Native MVC
In the decades that followed, MVC outlived Smalltalk and powered applications for Mac OS and Windows as those systems grew and evolved rapidly. Later, when smartphones began to appear, native mobile apps for Windows Mobile and early versions of iOS also relied on MVC and its variants. At Microsoft, MVC later evolved into MVVM, which powers projects like WPF, Silverlight, and Xamarin.
Web MVC
In the early 2000âs, several important web frameworks adopted the Pattern Language of MVC: Spring, Ruby on Rails, PHP, and ASP.net. These frameworks added a new responsibility for the Controller: handling the initial HTTP request. It went something like this:
Controllers respond to HTTPÂ requests
The Controller is now the entrypoint into the application, rather than the View. The responsibility of the View also changed: instead of presenting something to the user directly and handling input, its job was to assemble a bundle of HTML, JS, and CSS for the browser to render. The HTML/JS would contain logic like button click handlers that would dispatch an action back to the controller via an XMLHttpRequest. Notice that there is no significant presence of the MVC pattern within the browser. That would soon change with the advent of Modern Web Frameworks.
Modern Web Frameworks
As the browser wars settled, we finally got to have nice things: XMLHttpRequest, stable DOM API, ES6, etc. With this increased power and flexibility, companies began building more and more complicated web apps (sometimes called Single Page Apps- SPA), as opposed to a related sets of simple web pages. Modern Web Frameworks are an attempt to organize this increasing client-side complexity and keep application development predictable and productive.
Often, these frameworks introduced an extra build step to create static bundles of HTML, JS, and CSS, for direct hosting via a simple âView Controllerâ (usually a handler at / or /index.html). The static nature of these resources means we can set cache-control headers and rely on CDNs to help serve them with lower latency. The JS bundles also included logic for making HTTP API requests against a set of resources served by âAPI Controllersâ, which usually respond with JSON:
That brings us to today: React, Vue , and Angular are the most popular Modern Web Frameworks. How similar are these frameworksâ organizing patterns to MVC? All of these frameworks clearly have something resembling the âViewâ, so any comparison will need to be done at the next layer: state (Model), mediating logic (Controller), and synchronization.
Iâm about to describe these frameworks by the most common ways to use them. Iâm sure someone somewhere insists on pairing Data-Binding with React, Flux with Angular, and Bruce Wayne with Tony Stark.
Vue is the most straight-forward: its docs clearly state that Vue is an implementation of MVVM. Angular is also MVVM-ish by default. However, React was forged from the heart of a dying star, using a super-pattern called Flux:
Chris Hemsworth creating React at FacebookActual Flux diagram; all the arrows on the right-side point clockwise.
Flux is all about one-way data flow. Recall that the Model in MVC represents the persisted data that will be rendered by the View. Models in MVC can also contain business logic. Flux uses Actions/APIs for business logic, and the âStoreâ for handling state. You can think of the Store as one monolithic Model for the entire React app.
Why does Flux embrace one-way data flow? The reasoning goes like this: as an application grows in complexity, it becomes increasingly difficult to manage state changes with view updates, especially if those changes are coming from different sources. As opposed to Data-Binding, where the View observes a mutable instance of the ViewModel for property changes, React creates a new View as a function of immutable State/props. The View never needs to worry about local state changes. The app can only change by creating a new Model instance in the state tree. When React wants to update the app, it replaces a part of its state tree with a new object, which triggers the creation of new View(s).
While one-way data flow is a powerful concept, it is not a free lunch box filled with silver bullets, nor does it elevate React/Flux onto a different power level versus Angular/Vue.
I hope this has been useful. If not useful, then interesting. If not interesting⊠well thatâs in the past and the past is immutable; perhaps you should replace yourself with a new functionally generated immutable instance that makes better decisions about which articles to read =).
From MVC to Modern Web Frameworks was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.