Poll: Which JavaScript framework do you use (and why)?
61–70 of 78 posts
Re: Poll: Which JavaScript framework do you use (and why)?
#62Earlier quoted context omitted.
I'm not quite sure what's your point. Of course the magic has to happen somwehere. I just don't want to bother with it. AngularJS is not so easy to understand, but it works pretty well, for me at least.
The point is that the code is quickly piling up technical debt.
(By that I mean that there would be efforts made to keep it lean. I don't think Google is Microsoft.)
Re: Poll: Which JavaScript framework do you use (and why)?
#63I'm going all in on Angular, even building a big open source project around it ( http://ionicframework.com/ ). What really drew me in was hearing from developers that were using it at big, slow companies for entire teams building production apps. Officially adopting a technology like that is pretty rare, and I guessed Angular had started to achieve a level of adoption that would make it the most worthwhile to invest…
Likewise, I expect at some point we'll be using node.js (probably over Rails/Django) because it's a lot more obvious to 'management' that it's used by large organizations.
Re: Poll: Which JavaScript framework do you use (and why)?
#64How about none/in-house?
Re: Poll: Which JavaScript framework do you use (and why)?
#65It's blazingly fast.
disclaimer: I work for famous.
Re: Poll: Which JavaScript framework do you use (and why)?
#66WindowBuilder is free and allows really good GUI construction.
Re: Poll: Which JavaScript framework do you use (and why)?
#67Backbone (though I want something lighter weight and w/o the jquery dependency), backbone-signal, Handlebars, browserify. I have a single app model which uses a bunch of reactive signals and other registry data. The great thing about browserify if it give you commonjs for the client side. commonjs takes care of the structure & naming of your domain logic. It also allows you to create fine-grained modules, which is wo…
backbone's only hard dependency is underscore, it's also the lightest library on this list by a solid margin
Not to mention, stepping through (or trying to log) the endless anonymous functions created by underscore can be a hassle and straight crashes chrome/node inspector in some situations.
Re: Poll: Which JavaScript framework do you use (and why)?
#68Re: Poll: Which JavaScript framework do you use (and why)?
#69Earlier quoted context omitted.
Can you elaborate?
Besides just four files containing ~10k lines of code?
Re: Poll: Which JavaScript framework do you use (and why)?
#70I'm going all in on Angular, even building a big open source project around it ( http://ionicframework.com/ ). What really drew me in was hearing from developers that were using it at big, slow companies for entire teams building production apps. Officially adopting a technology like that is pretty rare, and I guessed Angular had started to achieve a level of adoption that would make it the most worthwhile to invest…
At my place of work (large, slow) Ember is starting to get widely used. "Google uses/supports it" is instant justification for using it to any layer of management, and I think that's the source of its success. (At least where I'm working people are afraid of using Ember because it's harder to explain/justify to the suits.) Likewise, I expect at some point we'll be using node.js (probably over Rails/Django) because it…