Guide to JavaScript Frameworks
javascriptreport.com
Guide to JavaScript Frameworks
1–10 of 244 posts
Re: Guide to JavaScript Frameworks
#2Re: Guide to JavaScript Frameworks
#3If not your behind and your skills are outdated.....
Re: Guide to JavaScript Frameworks
#4Re: Guide to JavaScript Frameworks
#5TypeScript is nice. Actually writing code in angular is a fine experience. It’s all the stuff around that which isn’t great. We recently upgraded our app from Angular 4 to 5 without much fuss and that was nice. But the team should really go back to using version numbers. They exist for good reason.
Re: Guide to JavaScript Frameworks
#6Re: Guide to JavaScript Frameworks
#7- Don't need to know jsx!
- Sane way of scripting puts the script in an object and each component is html javascript css
- Event buses allow sharing of variables between child components without either redux or pushing variables down one child at a time (finally!)
- v-for looping is saner than reacts mapping
- v-if allows v-if statements without renderIf component or multiple render statements in react (antipatterns boo!).
- two way data binding with vue-model
- native vuex with an index file that holds state sanely, rather than just having state held in each reducer as done in react
- Great documentation!
- Yay !
Re: Guide to JavaScript Frameworks
#8It's lacking the best - Imba. The rest are just funny toys. Sad it's lacking documentation. Hope it will change soon because it kills with performance and developer experience.
Re: Guide to JavaScript Frameworks
#9Sounds more like a pro to me as it is the up-coming alternative.
Re: Guide to JavaScript Frameworks
#10Reasons why Vue will rock your socks off - Don't need to know jsx! - Sane way of scripting puts the script in an object and each component is html javascript css - Event buses allow sharing of variables between child components without either redux or pushing variables down one child at a time (finally!) - v-for looping is saner than reacts mapping - v-if allows v-if statements without renderIf component or multiple…