Why I No Longer Use MVC Frameworks
infoq.com
Why I No Longer Use MVC Frameworks
1–3 of 3 posts
Re: Why I No Longer Use MVC Frameworks
#2I think separating presentation from content logic is still a good idea, so HTML should stay away from any kind of JS, which is where I think React.js is going in the wrong direction. SAM seems to offer a way to do reactive views without the need to mix presentation and content logic.
As far as using pure functions and declarative programming, this is also the right direction for UI. Web apps are streams of data and actions, and functional paradigm handles streams orders of magnitude better than old-school imperative functions with side-effects. Good luck selling this idea to companies that use enterprise software with Java and that think process will fix all your problems.
Re: Why I No Longer Use MVC Frameworks
#3This is how I built my UI system in my functional game engine - https://github.com/bryanedds/NuGameEngine
More detail - https://github.com/bryanedds/NuGameEngine/blob/master/Nu/Doc...