DEV Community

Discussion on: May 26th, 2022: What did you learn this week?

Collapse
 
luccabiagi profile image
Lucca Biagi

I'm learning Angular + ionic. It is amazing, I've done the same app attempt using vue and it wasn't so easy. Until now I'm loving it

Collapse
 
leob profile image
leob

Was that with Vue + Ionic? and what made the Vue combo harder than the Angular combo? and you were familiar with neither Angular nor Vue?

Collapse
 
luccabiagi profile image
Lucca Biagi

Yes, it was Vue and ionic. I didn't felt comfortable using it, mainly, but I had some problems when I was wiring up everything (like translation with i18n).
And yes! I have the same experience with both (fixing some simple bugs), but, I think that I feel more comfortable using angular

Thread Thread
 
leob profile image
leob • Edited

Angular was the first and original framework implemented in Ionic, so probably it's more mature than their Vue or React versions ... also the fact that you're more comfortable with Angular probably plays a role.

I learned Angular 1, never progressed to newer releases.

I learned Vue and React after that, but I'm a big Vue fan, not a React fan ...

React just makes the dev work way too hard on arcane stuff like preventing unnecessary re-renders - you need to do your hooks and "useMemo" and whatever else exactly "right", or you'll have horrible performance with too many re-renders. What's so interesting about that, I wonder ... a (frontend) dev should be able to focus on business logic and UX, not on these obscure details - Vue just takes care of all that low level stuff and lets you focus on what's important.

And, Vue does all that while not having a larger bundle size than React (smaller even I think) ... yeah, big big Vue fan here, React is not really for me, every time I see articles or discussions on how to do things "right" in React I think, what's all the fuss, Vue makes all that easy with it's reactive architecture.

(funny - Vue is in fact more "reactive" than React, what's in a name, lol)

Thread Thread
 
luccabiagi profile image
Lucca Biagi

Wow! I didn't knew that! Makes sense. TBH, I don't understand the needs that created react.

Thread Thread
 
leob profile image
leob

Yeah well, React isn't a completely bad or useless concept, but in my opinion Vue makes a dev's life much easier ... in React communities I always see these hugely technical debates about HOCs and hooks and props and whatever, and how to prevent unnecessary re-renders, and so on and so on ... too much stuff which IMO the framework should take care of, but which React forces the dev to handle.

Collapse
 
nickytonline profile image
Nick Taylor

Nice!

A kangaroo playing an electric guitar

Collapse
 
nombrekeff profile image
Keff

I'd suggest trying flutter afterwards if you feel like it! I can't recomend it enough

Collapse
 
luccabiagi profile image
Lucca Biagi

I'll definitely try someday! Thank you!