I'm worried about forward compability of all this React components I'm building
Vue.js vs. React
51–60 of 486 posts
Re: Vue.js vs. React
#52You'll see quotes in this thread like "The demand for both React and Vue.js is growing tremendously" thrown around. It's good to check out npm install stats to get an unopinionated comparison. https://npm-stat.com/charts.html?package=react&package=vue&p... In reality, React is downloaded roughly 4-5x more than angular and 7-8x more than Vue. In August so far, React has 75% market share among these three libs. Interes…
It can be deceptive when you look at charts that list totals when what you're concerned with is growth rate.
Re: Vue.js vs. React
#53Go for Ember: - Proven tech - No licensing issues - Solid community - Community driven, no company calling the shots
I was a huge Ember evangelist until I started trying to onboard other devs into my project. It took months for people to figure out which way was up. In comparison, other devs picked up Vue in a week or so.
I dont see much of this problem, including myself as one of these just hired jr devs.
Re: Vue.js vs. React
#54Re: Vue.js vs. React
#55How are people getting along with Vuex vs Redux? It looks pretty clean and grokable in the examples and deals with async out of the gate - https://github.com/vuejs/vuex/tree/dev/examples/counter
If you use something like Kea ( https://kea.js.org ), the amount of boilerplate for Redux goes down dramatically. The syntax is actually pretty simiar to Vuex, perhaps with even less boilerplate.
I won't be using this as it definitely sets off my library-depth spidey sense.
The multiple libraries it abstracts would all change versions over time and lead my applications to be even more brittle.
Vuex being mainline with Vuejs is a major plus as I look at its long term stability, though whether it insists on vuejs I need to look into.
Re: Vue.js vs. React
#56Re: Vue.js vs. React
#57You'll see quotes in this thread like "The demand for both React and Vue.js is growing tremendously" thrown around. It's good to check out npm install stats to get an unopinionated comparison. https://npm-stat.com/charts.html?package=react&package=vue&p... In reality, React is downloaded roughly 4-5x more than angular and 7-8x more than Vue. In August so far, React has 75% market share among these three libs. Interes…
Re: Vue.js vs. React
#58Vue is good for simple things. But it do not shines for complex apps and sometime makes it even harder than it should be. React can appears complicated when beginning, but it pays off on complex apps.
Re: Vue.js vs. React
#59Re: Vue.js vs. React
#60I used React for a few years and it was great and powerful, there were many things however that I disliked.. Particularly I was not a fan of JSX. I liked React but I did not feel comfortable using it. When I first saw VueJS I had a hard time understanding how it would be any better than React, that is until I saw single file components. https://vuejs.org/images/vue-component.png I fell in love with the eloquence of b…
Completely agree! Single-file components are more natural to how I think about the web. It's worth noting that Vue also supports render functions with JSX ( https://vuejs.org/v2/guide/render-function.html ).
I do like jsx for simple things but always felt it bogged down the design piece having to convert even if its just the class to className