JS frameworks are absolute cancer. They do nothing but kill page load times and degrade user experience: since when is it a good idea to recompile the whole entire standard library each time a program is run? They're also completely redundant in the modern browser, since standard compliance has gotten much better and more features have been added to HTML/JS/CSS. It's just yet another api that developers have to learn…
Choosing the Right JavaScript Framework
61–70 of 91 posts
Re: Choosing the Right JavaScript Framework
#62> Backbone lacks support for two-way data binding Actually Backbone is painful because of the two way data binding. You do have to write way more boiler plate, but forms and actions in views will update your models and so will content coming in from the server and your event listeners have to be able to ensure that your events don't runaway from you causing all kinds of problems. Like view action -> updates model ->…
Re: Choosing the Right JavaScript Framework
#63i appreciate the author's effort but don't feel like i have a better handle on the applicability of each framework to real projects (like many similar articles). basically, this article lists some good and bad features of each framework with some light commentary about a few of those features, which means it doesn't really help you answer the question implied by the title ("which js framework should you choose?"). i…
It covers the same frameworks (Angular, Backbone, Ember) and also mentions Polymer and React.
~20$ for the early access version.
Re: Choosing the Right JavaScript Framework
#64Earlier quoted context omitted.
React + what? Is there a standard router/controller and model that get's used with React? I think they just could have added the line "As an alternative to using underscore templates in Backbone, you can use React instead."
There are a couple React-only routers but a lot of React.js people (including myself) use Backbone for the router/controller.
Re: Choosing the Right JavaScript Framework
#65What, no React/Flux? How can this be a serious comparison without React?
React + what? Is there a standard router/controller and model that get's used with React? I think they just could have added the line "As an alternative to using underscore templates in Backbone, you can use React instead."
Re: Choosing the Right JavaScript Framework
#66What, no React/Flux? How can this be a serious comparison without React?
React + what? Is there a standard router/controller and model that get's used with React? I think they just could have added the line "As an alternative to using underscore templates in Backbone, you can use React instead."
- Flux Architecture Pattern [0]
- React Router [1]
Note that there isn't really a prescribed model in Angular aside from $scope either.
Re: Choosing the Right JavaScript Framework
#67Re: Choosing the Right JavaScript Framework
#68I just did a bunch of research on state-of-the-art JS architectures for a new project I'm working on, and neither of my first two choices are on this list. (Granted, they aren't restricted to MVC either.) Polymer is interesting because it's the first one that's geared around the idea that the browser is an app rendering engine, not a document reader. Being able to declare your own HTML elements and bind them together…
Re: Choosing the Right JavaScript Framework
#69i appreciate the author's effort but don't feel like i have a better handle on the applicability of each framework to real projects (like many similar articles). basically, this article lists some good and bad features of each framework with some light commentary about a few of those features, which means it doesn't really help you answer the question implied by the title ("which js framework should you choose?"). i…
There's a recent release by O'Reilly called "Choosing a Javascript Framework" ( http://shop.oreilly.com/product/9781939902085.do ) that you might want to look at. It covers the same frameworks (Angular, Backbone, Ember) and also mentions Polymer and React. ~20$ for the early access version.
what i find interesting with these frameworks is that they're all moving the templating engine (something like coldfusion from 15 years ago, ha!) to the frontend... part of the ebb and flow of server vs client side computing i guess.
Re: Choosing the Right JavaScript Framework
#70I just did a bunch of research on state-of-the-art JS architectures for a new project I'm working on, and neither of my first two choices are on this list. (Granted, they aren't restricted to MVC either.) Polymer is interesting because it's the first one that's geared around the idea that the browser is an app rendering engine, not a document reader. Being able to declare your own HTML elements and bind them together…
If you don't mind sharing, have you done any research on data layers for React? From what I can see, there seems to be three major schools of thought: the Flux architecture, using Backbone's models, or just writing something custom.
The best part is, thanks to React & Flux I'm building a large scale web app without jQuery for the first time in my life :)