VUEJS or REACTJS - what to choose | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

VUEJS or REACTJS - what to choose

Imagine that you have to write a fairly large application, but the frontend will not be too extensive. What framework would you use? Reacjs or Vuejs? I care about specific arguments, why exacly this one and not the other one. I mainly deal with backends, of course I know both frameworks at the junior level, but I'd like to get to know your opinions.

27th Jun 2019, 9:00 PM
Krzysztof B
Krzysztof B - avatar
12 Answers
+ 8
I have pulled up a few articles, as I know there are a lot of really bad or biased ones out there. At first glance, these appear to be objective and at initial review, seem to represent the good and the bad of ReactJS. Again, I'm not sweatin' the cons... we have a great workflow and don't regret ReactJS for our needs. I highly recommend reading the comments and focus on the ones that appear to come from objective people. 😉 https://medium.com/javascript-in-plain-english/i-created-the-exact-same-app-in-react-and-vue-here-are-the-differences-e9a1ae8077fd https://medium.com/fundbox-engineering/react-vs-vue-vs-angular-163f1ae7be56 https://dzone.com/articles/reactjs-vs-vuejs-comparison-of-popular-frameworks https://artjoker.net/blog/reactjs-vs-vuejs/ https://itnext.io/anyway-this-is-why-i-prefer-vue-over-react-ad2653595fc5 Good luck deciding. 🤓👌
28th Jun 2019, 3:05 AM
David Carroll
David Carroll - avatar
+ 7
Linus Gates LOL... Thanks for sharing that Reddit post. I especially got a kick out of the side conversation about why so many people misspell the word 'lose' as 'loose'. That kills me every time I see that in SoloLearn. 🤣😂 I honestly thought it was just me that was triggered by that. 😂 Then the explanation that followed was just great stuff. Awesome stuff! 👌
28th Jun 2019, 5:29 AM
David Carroll
David Carroll - avatar
+ 7
rudolph flash I have no doubt that Vue is a good framework. The problem is, many developers, like myself, prefer the flexibility of piecing together libraries and not being forced to follow other popular, yet, opinionated frameworks. I suppose it comes down to preferences where there is parity in features and capabilities. I prefer greater control rather than things that just programmagically work. I'm also someone who enjoys reading the source code of libraries and modules used in my projects. 😉 It's also why I've struggled with finding the same love that come so naturally for others with Ruby on Rails, Angular, and any framework that use scaffolding features and a rules for "their" way of doing things. I dare say this applies to why I struggle with finding love with Python and their Pythonic ways. 😂🤣 Nothing wrong with these frameworks or language or those who love them. It's just me. 🤓
28th Jun 2019, 7:23 AM
David Carroll
David Carroll - avatar
+ 6
Krzysztof Bujak I can only speak for ReactJS since I've not built anything beyond a simple prototype in Vue. That said, I've been building large scale SPA apps for many years and have been, by far, happiest working with ReactJS. While I'm a fullstack, multi-platform, polyglot developer, I got my start mostly in backend SOA type of enterprise development. I think that ReactJS really lends itself towards software engineers more than designers and frontend developers. The patterns used with ReactJS and especially with Flux or Redux scream of design patterns that will frustrate many designer centric frontend developers. So, in that sense, it could be a steep learning curve. Even if I was too try Vue, I would likely opt for JSX over the HTML template engine because I can't stand declarative programming in HTML to simulate imperative statements and loops. Also, while the perf tests might show an edge with Vue over ReactJS, it's never been a noticeable issue with our very large applications. (continued...)
28th Jun 2019, 3:01 AM
David Carroll
David Carroll - avatar
+ 5
Christian Paez I don't think that's a completely true statement. There may be more developers for react, since it's been around for longer than vue, but any modern framework will have good support for most browsers since they all compile down to older versions of javascript, and a well written app will have proper polyfills for what isn't supported just by syntax changes. David Carroll I've mainly only worked with react as well and I agree that having control over everything makes a lot more sense than things like the attributes for loops and logic.
28th Jun 2019, 3:06 AM
JS Coder
+ 5
David Carroll Yes, it's so irritating when you find people confusing you by misspelling lose as loose and vice-versa! Anyways, for those who still don't know and are reading these comments, 'Lose' is the word that generally stands for defeat or for the opposite of win. 'Loose' is the word that is used for things that are not tight, like a loose thread.
28th Jun 2019, 5:35 AM
SSki11
SSki11 - avatar
+ 4
To add to whaf Eliad said, I personally prefer react over vue as well, although if you're going for performance or this will be a widely used application on slower mobile devices, vue may be better. From what I've seen, vue usually performs better in benchmarks and also results in a smaller bundle size.
28th Jun 2019, 1:53 AM
JS Coder
+ 4
David Carroll excellent comment with many good points. You bring up many reasons why I also prefer to use React over Vue. Vue has a bit too much "magic" in my opinion, and it is more oriented for designers and perhaps even dare to say JavaScript "begginers", while React leaning more heavily on raw JavaScript and more complex implementation though Functional Programming concepts, which I find more appealing and satisfying to work with personally.
28th Jun 2019, 3:22 AM
Eliad
Eliad - avatar
+ 4
At their core - React is a library. Vue is a framework. Library will give u more flexability. Framework will provide better structure. In my opinion — the below article/press really hurt Vue’s chances of taking React. Frameworks change to early in the game. https://www.reddit.com/r/vuejs/comments/c460wl/a_dank_recap_of_the_week/
28th Jun 2019, 4:41 AM
Linus Gates
Linus Gates - avatar
+ 4
Thank you! Very interesting discussion :). I finally chose the vuejs, mainly because of the low entry threshold.
28th Jun 2019, 1:11 PM
Krzysztof B
Krzysztof B - avatar
+ 3
I think both frameworks are great and do the job of creating a reactive UI easily very well, also they both have great communities, support tools and npm packages. After trying both, I personally prefer React over Vue, simply because the way it feels and handles the code (Components, immutability, pure functions, everything is done in JavaScript). React is very sophisticated and declarative, you know exactly what would be rendered to the page, and has a great dev tools support for development and production. That said, I think Vue's learning curve is softer, so if your specific need is just quickly fix yourself a UI and focus mainly on the server side aspect, I think Vue will be the better choice for you.
28th Jun 2019, 12:20 AM
Eliad
Eliad - avatar
+ 3
React probably has better support since is more popular
28th Jun 2019, 2:54 AM
Christian Paez
Christian Paez - avatar