The State of JavaScript Frameworks, 2017
1–10 of 19 posts
Re: The State of JavaScript Frameworks, 2017
#2Re: The State of JavaScript Frameworks, 2017
#3Re: The State of JavaScript Frameworks, 2017
#4It's a shame that Angular2/4 hasn't gotten more traction. It's really well designed in my opinion. People seem to be flocking onto the react train (possibly mindlessly). I found react to be quite lacking. I don't like redux and it's crazy indirection, and I haven't been able to find a way to handle forms in react that even comes close to angular2/4.
Re: The State of JavaScript Frameworks, 2017
#5It's a shame that Angular2/4 hasn't gotten more traction. It's really well designed in my opinion. People seem to be flocking onto the react train (possibly mindlessly). I found react to be quite lacking. I don't like redux and it's crazy indirection, and I haven't been able to find a way to handle forms in react that even comes close to angular2/4.
Can you explain this? There's very little indirection (if any) in Redux.
Re: The State of JavaScript Frameworks, 2017
#6React dominating, as expected. Vue growing, which is nice. Angular and Ember both seem to hanging in there but it's clear they aren't where the community is interested.
I think we all knew that, but it's nice to see numbers. Kind of sobering to see Angular and Ember are basically as popular as Backbone is tho. Of the two - Ember seems more healthy.
Re: The State of JavaScript Frameworks, 2017
#7It's a shame that Angular2/4 hasn't gotten more traction. It's really well designed in my opinion. People seem to be flocking onto the react train (possibly mindlessly). I found react to be quite lacking. I don't like redux and it's crazy indirection, and I haven't been able to find a way to handle forms in react that even comes close to angular2/4.
Re: The State of JavaScript Frameworks, 2017
#8It's a shame that Angular2/4 hasn't gotten more traction. It's really well designed in my opinion. People seem to be flocking onto the react train (possibly mindlessly). I found react to be quite lacking. I don't like redux and it's crazy indirection, and I haven't been able to find a way to handle forms in react that even comes close to angular2/4.
I'm working on a new project in angular and I'm very impressed with the built-in routing support. Also, I wasn't a big fan of using rxjs Observables everywhere at first, but they are now my favorite thing about writing javascript.
I'm really looking forward to taking advantage of the service worker support as well.
Re: The State of JavaScript Frameworks, 2017
#9I'm actually quite shocked at how dominant Backbone was. Granted it was when npm was less popular, but still... impressive. React dominating, as expected. Vue growing, which is nice. Angular and Ember both seem to hanging in there but it's clear they aren't where the community is interested. I think we all knew that, but it's nice to see numbers. Kind of sobering to see Angular and Ember are basically as popular as B…
Re: The State of JavaScript Frameworks, 2017
#10It's a shame that Angular2/4 hasn't gotten more traction. It's really well designed in my opinion. People seem to be flocking onto the react train (possibly mindlessly). I found react to be quite lacking. I don't like redux and it's crazy indirection, and I haven't been able to find a way to handle forms in react that even comes close to angular2/4.
> I don't like redux and it's crazy indirection Can you explain this? There's very little indirection (if any ) in Redux.
Describing behavior as plain object actions _is_ a form of indirection, compared to code that directly applies a state update. It's a tradeoff. Use of plain object actions takes some more code, but opens up the power of middleware and time travel debugging.