Тёмный

WHY I CHOSE VUE OVER REACT AND WHY I'M NOT GOING BACK 

Program With Erik
Подписаться 123 тыс.
Просмотров 100 тыс.
50% 1

Опубликовано:

 

17 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 326   
@ProgramWithErik
@ProgramWithErik 4 года назад
What do you guys think of React and Vue? Also make sure to pre-oarder your .tech domains and get 10% discount at www.go.tech/erik!
@jhoanborges6574
@jhoanborges6574 4 года назад
those eyes
@MrEnsiferum77
@MrEnsiferum77 4 года назад
Over-hyped. they will not be important in few years, cuz kids will be hyped by svelte.
@johnbertoglio6065
@johnbertoglio6065 4 года назад
Thanks for the .tech domain ad. Got a great name for 10 years
@meepsmeep7457
@meepsmeep7457 2 года назад
@@MrEnsiferum77 I think that's a pretty bad take... People still use even older frameworks enthusiastically... Eventually there will be new frameworks that fit other people's individual needs, so they will move on to those. But vue and react will probably be part of the dev world for a long long time.
@fabiodoubleb
@fabiodoubleb 3 года назад
The template - script - style separation its just THE choise that got me started with Vue.
@samuelebarbiera1075
@samuelebarbiera1075 3 года назад
I agree as well super easy to learn the structure
@___Kevin
@___Kevin Год назад
Same...it just made sense for me
@ynnkh2116
@ynnkh2116 4 года назад
Whatever framework or library you use, as long as the job is done, your product is rock-solid and well tested, and your customers are happy, it doesn't matter.
@jordixboy
@jordixboy 4 года назад
+1, this also applies to not use any framework.
@AngelHdzMultimedia
@AngelHdzMultimedia 3 года назад
@@BondJFK That's what solo devs don't understand. And I'm a solo dev. But I understand this, and I'm always learning everything, so that when I get to work in a team, I can get along with everyone and follow any convention and tools.
@MP-mh1tu
@MP-mh1tu 3 года назад
Anytime people compare technologies and equipment there will be one person throwing an obvious comment like this one
@olufemioyedepo2791
@olufemioyedepo2791 4 года назад
Couldn't agree more. Vuejs gives me the simplicity I was used to in Angularjs. Vue all the way...
@jmon24ify
@jmon24ify 4 года назад
I have done projects in Angular JS, Angular, Vue, React, Svelte and a few others but my favorite is Vue because pretty much the same reasons as mentioned in this video. Vue has the smallest learning curve and quickest to get working. For instance, I have spoken to the owners of a startup and their MVP Vue Saas app was up in 3 months and they were all first time Vue developers.
@hipertracker
@hipertracker 4 года назад
Svelte looks simpler. Its big advantage is full blown JS compiler which generate JS build without any runtime making the code even 10x smaller than others.
@tanzimibthesam5861
@tanzimibthesam5861 4 года назад
WT about learning Es6 only :p
@TheMurtukov
@TheMurtukov 3 года назад
Why would you care about learning curve if you already learned all of these libraries?
@mtaur4113
@mtaur4113 4 года назад
Scoped CSS is handy. Often you want a DOM element and its children to have some CSS, or you want all tags within that element, or whatever. Vue has the *optional* ability to scope a file's CSS definitions to that file's component only, by injecting classes into the component's top node and the generated production CSS file. You can still make global CSS classes, but global is just as awkward in CSS as it is in JS when it's not needed.
@ProgramWithErik
@ProgramWithErik 4 года назад
Yup! That's true, I do like the flexibility
@mtaur4113
@mtaur4113 4 года назад
IIRC it uses child selectors in the compiled CSS to pick out only the children of the rendered component, and this is because the root node gets a data-xyzasdfjkl CSS class? It's so handy in practice.
@busyrand
@busyrand 4 года назад
Apparently, the community is everything. I remember learning this about Python, and heck even older technologies like PERL. The Vue community, from an outsider's perspective, has been gung ho about it since the beginning. That's great that you have been about to connect with people easily. I remember seeing this theme echoed in the Ember documentary I watched, where that alone will make me far more likely to check things out.
@RickyGarcia_Learning
@RickyGarcia_Learning 4 года назад
I've used React, Vue, and angular professionally. Vue is my favorite.
@AlaaAlaa-er4ld
@AlaaAlaa-er4ld 4 года назад
What r the reasons?
@sumitshinde5653
@sumitshinde5653 3 года назад
Is it easy to jump from Vanilla JS to Vue JS?
@fdg6935
@fdg6935 3 года назад
@@sumitshinde5653 no
@JamesGaehring
@JamesGaehring 4 года назад
I use Vue every day for work, but I still prefer React. The learning curve for Vue is low but there's sooo much syntax, I find I have to keep the docs open all the time even though I've been using it heavily for nearly 2 years now. With React, the learning curve is steeper but I never find myself relying on the the docs because the syntax is just JavaScript syntax, and the core metaphors are so simple (though not easy) once you grasp them.
@theretroman3862
@theretroman3862 4 года назад
The biggest difference is on Vue you work with Data Model not with DOM. That is the point and the main reason of existence of all the directives.
@9SMTM6
@9SMTM6 4 года назад
@@theretroman3862 eh. The thing with React is that it doesn't really have an data-model besides the state directly connected with the DOM. And once you have more complicated state (even just shared state, but especially dependent one) the de-facto standard is Redux with its helpers Redux-Thunk and maybe redux-saga, and I got to say, I'm not a big fan of these. IMAO Redux-Thunk shouldn't even exist, and both packages are noticeably tacked on onto Reeux, while the equivalent in Vue, Vuex not only shares syntax with Vue - other than Redux - but also is consistent in itself - other than Redux and it's add-ons - while making the separation between the features clear - again other than redux with its add-ons, where you have separate syntax but going by the docs these aren't handled all that different, which leads to people misusing them.
@oinn6216
@oinn6216 4 года назад
kidding? To Learn new directives and other Vue stuff more easy then write native JS function and return look like native html(jsx) with all native events only in camelCase? Yep, this stuff : v-on:click v-model v-bind:value much easier for newcommers. If I hadn't been working with Angular I would say wtf is that?
@anonymoususer5402
@anonymoususer5402 4 года назад
@@oinn6216 It's really easy if doing native methods ourselves because I really hate directives and those stuff that are required for one particular framework, the things we learn in react will always apply because it's pure js.
@alvinharyadi5897
@alvinharyadi5897 4 года назад
Why I chose Svelte over Vue and I am not going back
@cyb
@cyb 4 года назад
try riot js
@ProgramWithErik
@ProgramWithErik 4 года назад
I need to try that
@Andrey-il8rh
@Andrey-il8rh 4 года назад
I think Svelte will explode in 2020. It's pretty similar to Vue in terms of overall UX, but it revolutionize reactivity which makes it much faster in certain scenarios. I guess the only downside is small ecosystem but I bet this will soon become much bigger
@brogen100
@brogen100 4 года назад
@@Andrey-il8rh vue 3.0 is 6 times faster than previous version. so there you go...bring it tomorrow, i'll be here
@Andrey-il8rh
@Andrey-il8rh 4 года назад
@@brogen100 Vue 3 is not there yet. From where you got such statistics?
@wassamness
@wassamness 4 года назад
I still prefer React because I can think in JavaScript. Not a big fan of all those Vue directives.
@bfsimao
@bfsimao 4 года назад
Wasswa Samuel just use vue with JSX
@eliasempty3957
@eliasempty3957 4 года назад
Google this "VueJS render function with jsx" or tsx ;)
@watherby29
@watherby29 4 года назад
100% agree. Vue will fade, React will fade but JS will live longer then them both. JS skills learned will be useful in something next. Learned Vue.js custom directives will be worthless at that point.
@paulkerrigan9857
@paulkerrigan9857 4 года назад
@@watherby29 Are you serious? Would anyone choose to use JavaScript over a decent language? When used in backend it doubles development time, and thus cost.
@s1n7ax
@s1n7ax 4 года назад
I'm new to both & I just can't find why this is so better. I prefer React because it i like how local variable end up in JSX than magically appearing properties of object in the view in Vue.
@MattDuarte11
@MattDuarte11 4 года назад
Vue is dope! Love it. Haven’t done much with it but used it and it’s great
@openedmind3704
@openedmind3704 4 года назад
When you check the chronology of frameworks like Angular/React/Vue/Svelte, what you see is that the concept of Web Component is more and more mature and implemented. And its what i love about Vue! Thanks to the .vue file format, we finally have a intuitive, complete, clear, and preprocessors-friendly way to realize web applications as trees of web components.
@rejiark2500
@rejiark2500 4 года назад
exactly.
@BekBrace
@BekBrace 3 года назад
Hey Erik, Hope you're doing well. I've converted to Vue myself recently, perfectly understand your viewpoint
@nevinkuser9892
@nevinkuser9892 3 года назад
Vue developers are friendlier, more approachable, and more open minded.
@ProgramWithErik
@ProgramWithErik 3 года назад
Yup
@suppur567
@suppur567 3 года назад
lol surree
@MartinOmander
@MartinOmander 4 года назад
If you need to port an existing web app written in vanilla Javascript to a framework, Vue is amazing. I learned Vue on a project like that. It was fun and easy to port the app in pieces, first the navbar, then a few buttons, then the calls to the back-end, etc. At all times I had a fully functional web app ready for release.
@US-Air-Forces
@US-Air-Forces Год назад
In vue there is no need to use setState to update a value of variable, it's done out of the box. Also no need to use event handlers for binding variables to an input components, just v-bind and work is done
@DmitriiBaranov-ib3kf
@DmitriiBaranov-ib3kf Год назад
v-model
@luishurtado3079
@luishurtado3079 4 года назад
Actually Vue is very easy to incorporate and use with Laravel, Symfony and by himself already but the job market are still owned by Angular and React, do you think this will change on 2020?
@ProgramWithErik
@ProgramWithErik 4 года назад
I see Vue steadily gaining ground and it will still do so more in 2020!
@BurhanEnterpriseKuwait
@BurhanEnterpriseKuwait 4 года назад
We want more for Quasar !!! :D
@jean4j_
@jean4j_ 4 года назад
I've tried the Quasar Play demo app, while it works fine on modern smartphones, it clearly lags for older ones. I did also an app with it myself, very convenient! But performance wise is kind of bad, like everything based on Cordova I guess I'm going for NativeScript now 😁
@TheSclare
@TheSclare 4 года назад
I tried Quasar too and it lags af.
@arsalanshaikh3763
@arsalanshaikh3763 4 года назад
Svelte is so easy as compared to vuejs I would recommend all to be good js developers and then pick any framework and master concepts like state management breaking the ui into separate reusable components and keeping your code dry and readable good variable naming etc...
@scottamolinari
@scottamolinari 4 года назад
Svelte is easy because it's newer to the game. Let it also be around for 4-5 years and let's talk then about if it is easier or not. :-)
@AaronArnoldaquapod
@AaronArnoldaquapod 2 года назад
I literally read a test page, deleted a few things, and understood what was going on. I haven't made a statement yet but.... I've been struggling for years. And to try Vue. It's such a breathe of fresh air.
@leanazulyoro
@leanazulyoro 4 года назад
I expected some stronger reasons over simplicity to learn. That's just not reason enough, and is relative, I learned React quite quick. And that statement about hiring a js developer and get him read vue docs, that's true for any framework, sure the docs could be a little nicier to follow along in vue, but react's are ok too. I just don't think it makes a difference. I tried vue and I just don't see to point on having js separated from html and css, that's not proper separation of concerns, separation of concerns is at a component level. At the end of the day to only reason I see is taste. A good js developer will learn to use any framework. So far, nobody has given me enough reason to use Vue over React.
@kresimircosic3753
@kresimircosic3753 4 года назад
This
@rejiark2500
@rejiark2500 4 года назад
when your thinking in terms of components ..you want the component to have its own style and its own behaviour. In React you write javascript and html and write css into other file for a component ...what sense does it makes ? in Vue you create component in one file thats the best thing.
@leanazulyoro
@leanazulyoro 4 года назад
reji arackal you can have styles in the same file in React, in fact it's becoming more and more popular to do so, with all the flavors of Css-in-js out there. And that for me makes even more sense, if you're gonna have everything in one file you might as well use one same language (js), that makes more sense for me.
@АлексейАлексеевич-ш7ю
Agreed with you, react is seems to a me a more advanced concept, vue is like template engine on steroids.
@АлексейАлексеевич-ш7ю
@@rejiark2500 well css in js is already 2 or more years in react, i'm surprised you don't heard of it
@scottamolinari
@scottamolinari 4 года назад
It's not React I have an issue with. In fact, I love the paradigm it brought into the game of JavaScript frontend programming. What bothers me about React is JSX. This is where I think Vue abstracts the right things into the HTML and that makes one of the main and important differences. Even programming with render functions is better than using JSX. To prove the point, Vue can do JSX too. How many Vue developers choose to use JSX? I don't know of one single one. Why? Because, as one smart PHP programmer said, "JSX looks like the PHP code I was told never to write." Yes, I know you can create React apps without JSX, but that is even more mofugly.
@Damixx111
@Damixx111 4 года назад
The reason why most people don't use jsx in Vue is because it's not the default. JSX is not bad per se. It might look messy to people who never used it but it's a very powerful tool and imo you get used to it rather quickly. And paradigms change over time. Maybe the php way was bad and I'm sure there are reasons why. JSX isn't, at least not in combination with react.
@scottamolinari
@scottamolinari 4 года назад
@@Damixx111 Yup. And there are good reasons why Evan You didn't follow the JSX route. It mixes responsibilities. Is it view logic or view structure? JSX makes that differentiation a lot harder. Or put another way, if I need to find the logic for a component, if it's all wrapped up in HTML, it makes reasoning about the logic harder.
@Damixx111
@Damixx111 4 года назад
@@scottamolinari I agree that view logic and view structure are tighter together. But do they really have to be split up? Two different languages in one file? WTF? 10 years ago that was a no-go. Not anymore. I mean I respect vue's approach, but in my opinion it's not necessarily better to split them as much. I was doing angular before I switched to react, and I was automatically creating much more, smaller components in react, because it does get messy (and slow) if you have huge components. I started splitting them up in components rather than files. That being said, although react has everything right next to each other in a single function, it's not much harder to differentiate since your logic (state, functions) is on top and view comes right after in the return statement (assuming we're using hooks). Angular uses different files, vue uses one file but multiple sections, react has everything right after each other. And that's great! Everyone can use which approach they like the best. For me it's react, for you it's vue. (I will get more into vue though, since it looks like a lot of people love it ^^)
@scottamolinari
@scottamolinari 4 года назад
@@Damixx111 If you are keeping and can keep your components small that's great and will definitely help with using JSX and keeping your logic simple enough to reason about. However, some components will tend to get bigger. Once they do, the separation in Vue makes it easier to reason about your logic. That's also why in Vue 3, we are also getting the composition API. Some say it makes it more React-like. But, they are mistaken, because the template (HTML) separation from the JavaScript is still there and it's really powerful and fast. :) Do try out Vue more. You get all the power of React in a smarter more logical and more performant package. :)
@ProgramWithErik
@ProgramWithErik 4 года назад
I think Vue developers who like JSX should just use render functions. And with Vue 3 they've become even easier to use. IMO I'll stick with templates, it makes it easy
@avivshvitzky2459
@avivshvitzky2459 4 года назад
I feel like most of what you talked about is how simple Vue is to learn, but not enough on why someone who already knows React should move to Vue, since Vue being easy to learn is a reason to learn it as a first framework but not to move to it
@hipertracker
@hipertracker 4 года назад
Currently, React advantage over Vue is a better TypeScript support.Although it may change when Vue 3 is released.
@avivshvitzky2459
@avivshvitzky2459 4 года назад
@@hipertracker thanks for the insight
@Snugglelol
@Snugglelol 4 года назад
@@hipertracker I think React flows better when combined with redux, react router and hooks.
@jaromor8808
@jaromor8808 4 года назад
"since Vue being easy to learn is a reason to learn it as a first framework but not to move to it " makes no sense... or don't you need to learn the new framework when adopting it?
@avivshvitzky2459
@avivshvitzky2459 4 года назад
@@jaromor8808 I have talked about reasons to adopt in the first place, not what to do once you adopt...
@kristypolymath1359
@kristypolymath1359 4 года назад
Pleasant voice, and I can appreciate your enthusiasm for Vue (and it IS a pretty syntax), but your argument would be so much stronger had this video contained some coding.
@arwahsapi
@arwahsapi 4 года назад
Start getting sick of those bloated node_modules directory. I'm switching to Svelte.
@ProgramWithErik
@ProgramWithErik 4 года назад
Let me know how it goes!
@AngelHdzMultimedia
@AngelHdzMultimedia 2 года назад
🤣 Svelte also uses npm. Your comment makes no sense. NPM are packages, plugins. You'll always need them no matter what, and many packages depend on others, so, it's expected that the packages folder will be that heavy. And even if you move to Deno (something that you'll surely do, believing that there's no NPM folder), but then you'll be using network bandwidth to import Deno packages from the internet. And when you CACHE them, to avoid importing them from the internet, guess where they get stored in? In a folder on your computer... LOOOL!
@AngelHdzMultimedia
@AngelHdzMultimedia 2 года назад
Oh, and wait until Deno's packages library grows. (If Deno finally add something of value that NodeJS can't replicate, and more users decide to make the jump).
@arwahsapi
@arwahsapi 2 года назад
@@AngelHdzMultimedia You're right! I'm switching to non programming now.
@nshusa99
@nshusa99 4 года назад
Only thing I hate about React is I can't use a regular "class" attribute in JSX.. You gotta use "className" which is stupid imo
@pitisradu
@pitisradu 4 года назад
it's not "stupid", since what you return is JSX, which means javascript, and class is reserved for JS Classes. So they had to make a distinction. Thats clearly not a reason to hate react
@oardi
@oardi 4 года назад
I like VueJs for the amazing community driven plugins and the easiness to learn it. But sooner or later I get to a point where the Typescript, JSX and Editor Support just lacks.
@ProgramWithErik
@ProgramWithErik 4 года назад
Vue's TS support is good, and it gets better with Vue 3 and the composition API.
@DmitriiBaranov-ib3kf
@DmitriiBaranov-ib3kf Год назад
Screw JSX. Use Vue 3 or Nuxt 3
@theretroman3862
@theretroman3862 4 года назад
The biggest difference is on Vue you work with Data Model not with DOM. That is the point and the main reason of existence of all the directives.
@lostlost60
@lostlost60 4 года назад
When you share video about Vuejs and TypeSript using together? Thanks for all 😊
@ProgramWithErik
@ProgramWithErik 4 года назад
I will!
@hipertracker
@hipertracker 4 года назад
It's not as good as React. You need to wait for Vue 3
@hipertracker
@hipertracker 4 года назад
@Tùng PĐ yes, React has a better TypeScript support at the moment. Also React and Vue have new competition - Svelte. It contains a full blown JavaScript compiler enabling things impossible to do for React and Vue.
@othmanbech
@othmanbech 4 года назад
For now vue-cli build a project with class-component with typescript it's not included on vueJs 2.0 but work really well.
@That_Darned_S
@That_Darned_S 3 года назад
@John Smith time to take a look at the job market pal. react dominates.
@WeijieJIN
@WeijieJIN 4 года назад
For me the reason to skip React is I don’t like embed html in JavaScript. I don’t care which company is support which project.
@jaromor8808
@jaromor8808 4 года назад
_"I don’t like embed html in JavaScript"_ same here, makes me wanna puke :D
@emdadgar_official
@emdadgar_official 2 года назад
i prefer html in JS , instead of JS in html , but actually i hate facebook and my firm need Vue .
@remix2die4
@remix2die4 3 года назад
@5:35min "There is a prescribed way of doing things" => yes! React seems all over the place. 10 ways to do the same thing. And don't get me started on redux redux/saga or redux/promise. I like the simplicity of Vue and the ecosystem in place that must be used by everyone. It gives structure and guidance to the developer.
@ProgramWithErik
@ProgramWithErik 3 года назад
Yup for sure
@jaxftwofficial
@jaxftwofficial 4 года назад
Funny thing though, I just mentioned Vue during my interview as a software dev and an hour after I left, I was hired. Lol. VueJS is very simple but can handle complex stuffs.
@ProgramWithErik
@ProgramWithErik 4 года назад
Exactly!
@jean4j_
@jean4j_ 4 года назад
Was the position for Vue or React in the first place ?
@jaxftwofficial
@jaxftwofficial 4 года назад
@@jean4j_ Front-End Developer. I didn't know what stack they're using. Right now, we're using C# with Vue.
@DrunkenUFOPilot
@DrunkenUFOPilot 4 года назад
Feels great when the hire decision comes so quick! One time I finished an interview, thought I did okay but nothing fantastic, went for a mocha at a nearby Starbucks, and before my drink was ready my phone rings. Suddenly, I'm hired!
@yanntiersen2217
@yanntiersen2217 2 года назад
Lucky you. My experience shows that you will be rejected as soon as you mention Vue.
@haraldndb.1250
@haraldndb.1250 3 года назад
Angular = WTF, React = Ok, not bad, Vue = Wow, great.
@tommessig2060
@tommessig2060 4 года назад
Vue all the way. I've been in React world for two years and I hate it. I like the keep my HTML out of my js.
@maureento5435
@maureento5435 4 года назад
Interesting video! I personally love Vue for it’s simplicity and the fact that I don’t need to mix HTML and JS (JSX) so applications look cleaner, but I’m also on the boat for learning React.js! I don’t mind either in terms of usability and performance and applicability to building apps since all frameworks have their pros and cons 👌🏼 I do love how Vue and React and both lightweight to start with and learn as a beginner/mid-level (getting there) 🙌🏼
@meepsmeep7457
@meepsmeep7457 2 года назад
Going from vue to React is really hard imo .... lol
@ПетроКобзар
@ПетроКобзар 4 года назад
Great video, but I want not only about learning. What about performance, scale a big project, support code after long working period, etc?
@DmitriiBaranov-ib3kf
@DmitriiBaranov-ib3kf Год назад
Vue's still much better with all its compile-time optimizations. And it's hard to shoot yourself in the foot, which reduces support complexity. And the code is far more readable
@beyondthenature
@beyondthenature 3 года назад
Hey Erik, I chose Angular over Vue & I've gone mad!!!
@infinityApologeticsClips
@infinityApologeticsClips 3 года назад
Lol
@kaihendry
@kaihendry 4 года назад
Is there a good UI toolkit that fits well with Vue?
@ProgramWithErik
@ProgramWithErik 4 года назад
There is several Vue UI frameworks. Quasar, Vuetify, and I just did a review on Vuesax. I like them all
@mkirkland616
@mkirkland616 4 года назад
I use Vuetify
@ErtDonuell
@ErtDonuell 2 года назад
Tailwind CSS
@Nil-js4bf
@Nil-js4bf 3 года назад
The templating syntax puts me off. I like being able to do things like { !loading && !error ? : } and posts.filter(post => post.approved).map(post => ) over having to implement logic within templating tags which also feel slower to type. So basically, I prefer using Javascript's syntax over Vue's template language/syntax. Having the full power of Javascript when manipulating the view just feels more liberating and it's nice not having to constantly switch between 2 types of syntax. The counter argument of using jsx with Vue sounds great but as a newbie I would stick with what's "mainstream" since help is easier to find when I get stuck.
@ejazkarimhunzai
@ejazkarimhunzai 4 года назад
Nice video Erik but as you said tons of work in Angular and Vue, but some work in React, it sums up well that you still need to dig React more.
@ProgramWithErik
@ProgramWithErik 4 года назад
Thanks! I will be doing more React stuff in the future for sure
@eddwinnas
@eddwinnas 4 года назад
He basically kept saying "why i recommend vuejs over and over with no reason why"
@nicolasguillenc
@nicolasguillenc 3 года назад
Man what is it going to take for Vue to be at the top, developers just keep learning React for job offers, but Vue is so much better in my opinion, I decided this year I have to get more into React, while at the same time it's a shame :/
@RicardoJavierMelero
@RicardoJavierMelero 3 года назад
As a vue dev, I had to do some things in react recently and it felt awful, ugly, loops and conditional rendering look like a mess of js and html mixed in something that's not even jsx... I don't know, it was my first contact with react, but I found it really frustrating.
@CodingAbroad
@CodingAbroad 4 года назад
I use Angular for my big apps. And then I use vue for anything small or for multi page sites (as a replacement for jquery)
@RomeoMihalcea
@RomeoMihalcea 4 года назад
What's the advantage in using angular for "big apps"?
@CodingAbroad
@CodingAbroad 4 года назад
Romeo Mihalcea it scales better. Each section for your app has its own module to deal with routing and its components. Also services are easy to access at any position you are at in the app
@That_Darned_S
@That_Darned_S 3 года назад
@@CodingAbroad it really does not. it's not a framework thats fun to work with by any means. you can create the same apps just as easily in react or vue as well. don't say its not possible because it is.
@CodingAbroad
@CodingAbroad 3 года назад
@@That_Darned_S I respectfully disagree. Sure there’s a steeper learning curve with angular but once you get it you’ll realise it’s to help with scaling. Of course you can build the same thing in React and Vue, but it’s easier for spaghetti code to occur and isn’t great when revisiting code later (whether it’s yourself or others)
@That_Darned_S
@That_Darned_S 3 года назад
@@CodingAbroad I do agree with that but you can write terrible angular code as well.
@yazer79
@yazer79 4 года назад
Nice Vue tutorials Erik. Keep it up! If you are doing a new project, would you do it in Vue 2 or wait for 3?
@ProgramWithErik
@ProgramWithErik 4 года назад
Vue 3!
@Microphunktv-jb3kj
@Microphunktv-jb3kj 4 года назад
comp api indeed... but vue is inspired by Backbone... Evan literally himself have sayd that... and he worked in Meteor i think while he was writing that as hobby project...
@hasiburrahman9392
@hasiburrahman9392 3 года назад
I also like Vue over React.
@adante407
@adante407 4 года назад
Hardly any jobs for Vue in the UK. Unless its in Parallel with Laravel for PHP dev jobs. React is King everyone wants React Devs in the UK. I can't speak for other countries. But in the UK if you learn React, and learn it well you will be in demand.
@ProgramWithErik
@ProgramWithErik 4 года назад
It is still the most popular framework out there for jobs, I agree there. Vue is gaining though...
@adante407
@adante407 4 года назад
@@ProgramWithErik I really like Vue, but for me, like everyone else really? You kinda have to follow the money, but as you say, hopefully that will change at some point? Big fan of your vids by the way! Great content. 👍
@gilbertslam
@gilbertslam 3 года назад
JS Frameworks and libraries come and go. What matters the most is the solid understanding of Javascript principles, such as hoisting, closures, execution context, prototypes, OOP, and more
@solvedfyi
@solvedfyi 4 года назад
The views and comments will come on this one. But everybody knows the problems with React already, and the simplicity of Vue. The question is, Svelte is just as different from Vue, is it enough where Svelte will elicit similar statements compared to Vue? It's easy to beat up on React
@ProgramWithErik
@ProgramWithErik 4 года назад
We will see
@GerardoBelot
@GerardoBelot 4 года назад
Vuex way more intuitive that rxjs implementation in Angular, Anguar Material is not as well explained as Quasard or Vuetify, hell even the Grid system or the text fields widget are more rich developed on Vue!!
@martinalcala4823
@martinalcala4823 3 года назад
I just like React so much and all the ecosystem behind that, as a web developer I work with both technologies, but React just feels right, even though you're right that vue is really simple compared to React.
@yatsuk
@yatsuk 4 года назад
Hi, how to extend HTML and JS functionality of a component in the VUEJS? I have discovered that mixins allow to generalize JS functionality and slots - HTML. For example - I want to extend form component by adding additional text fields and validation logic.
@ProgramWithErik
@ProgramWithErik 4 года назад
Could you not add more props?
@DragosTudorache
@DragosTudorache 3 года назад
...and btw, easy(or advance knowledge of es6) is not a synonym of good(or better).
@killDJuice
@killDJuice 4 года назад
I feel React is more closer to JavaScript thn vue. Vue doesn't really look like JavaScript
@ProgramWithErik
@ProgramWithErik 4 года назад
I will give that to you, React does feel more Javascriptey
@branquitodemunze
@branquitodemunze 4 года назад
React is more closer to a terrible usage of javascript, unnecessary complicated but gives nothing in exchange
@mcnielviray
@mcnielviray 3 года назад
Just learned vuejs last year and it's very easy to use.
@chanakyakhatri5194
@chanakyakhatri5194 4 года назад
hi sir i started doing vue js and really loved it, you explain it very well can you please make a tutorial project on vue like a shopping cart or e-commerce kind of project thankyou again :)
@ProgramWithErik
@ProgramWithErik 4 года назад
Will try
@pranilrathod
@pranilrathod 4 года назад
"This Video is sponsored by Vue Js" 😜 Huge Fan Erik Thanks for providing awesome contents 😊
@smashed5826
@smashed5826 4 года назад
I have also wrote angular 1.x, react and vue, have to agree vue has less learning curve, but from personal career build, you have to learn react or angular also as lots existing projects were wrote by angular or react, vue is relatively young, and there are still some issues with the compatible packages for vue to be resolved
@bratwizard
@bratwizard 4 года назад
Yak yak yak. You spend half of the video talking about everything BUT why I should use it.
@aleb687
@aleb687 4 года назад
For myself, I love jsx! Steeper learning curve but then it’s easy peasy. Vue is too much fragmented
@ProgramWithErik
@ProgramWithErik 4 года назад
It's not fragmented
@leonf.7893
@leonf.7893 4 года назад
I think React is much better now with hooks and context, but I still prefer Vue. However, I've been eyeing Svelte recently, and can't wait to build something with it. It might just become my favourite (disappearing) framework.
@ProgramWithErik
@ProgramWithErik 4 года назад
Svelte is on my list of frameworks I want to use...
@rjchhetri2370
@rjchhetri2370 3 года назад
No setState, useState, useReducer bla bla bla like in React. Vuejs has the easiest learning curve, im not moving back to horrible react syntax
@craigjohnson8279
@craigjohnson8279 4 года назад
Vue is cool, but I don't think there are as many jobs for Vue as there are for React?
@Bayo106
@Bayo106 4 года назад
true. that's likely to change in a few years though
@ProgramWithErik
@ProgramWithErik 4 года назад
That is one disadvantage but one day...
@Voidstroyer
@Voidstroyer 4 года назад
Come to China. China is full of new startups looking for vue developers
@jaromor8808
@jaromor8808 4 года назад
@@Voidstroyer lmao fuck china
@zchot
@zchot 4 года назад
I want content out of a database/CMS and show it with vue but not hardcoded, how would i do that? Which cms and back end js language do i need to learn?
@dan6erbond
@dan6erbond 3 года назад
Use Strapi or Directus if you just need a simple database and API to read that data. You can create your models and store the data with very simple and usable GUIs and then with an HTTP client, such as Axios, to make requests to get the data. The CMSs I mentioned also support authentication and authorization, which makes them very versatile.
@zchot
@zchot 3 года назад
@@dan6erbond Nvm i quit web developing forever
@anthonykasabian4926
@anthonykasabian4926 4 года назад
You can nearly do everything with every fucking framework / library? Community to the first and the useful development roadmap. Also the examplrs it docs when hitting an edge case is far way better than in the vue community (worked for 15 years in js universe angular, vue, react/native, assemble, nativescript etc.) and even the market for react is better paid just to let you know and working with big teams or coming into settled projects wich are running in 90% on react. My two cents. Use what you know and you and your feels comfortable
@TheYunori
@TheYunori 4 года назад
I prefer React because of the simplicity and typescript
@ProgramWithErik
@ProgramWithErik 4 года назад
I understand
@SuperBlackBeto
@SuperBlackBeto 3 года назад
Well, simplicity !== ease
@JEsterCW
@JEsterCW 3 года назад
SIMPLICITY 😂😂😂😂😂😂😂I DIED
@saultube44
@saultube44 4 года назад
So Vue.js can't do backend? is Node.js OK for that?
@faisalindrianto5868
@faisalindrianto5868 4 года назад
Vue is a front end framework, and yea, you can do backend with nodejs
@samuelnmeje
@samuelnmeje 4 года назад
please what is the vue alternative for react native
@dulanhewage6395
@dulanhewage6395 4 года назад
Vue Native - vue-native.io/
@miklosnemeth8566
@miklosnemeth8566 4 года назад
On the other hand, if you, or your organization prefer TypeScript for developing projects, Vue is not an option, since no type checking happens in templates, unfortunately. React TypeScript support is full.
@ProgramWithErik
@ProgramWithErik 4 года назад
I’ve never heard of typescript in templates . Unlike react most logic in Vue is in the script tag in the options api or the compositon api. That’s where you would want your type checking
@miklosnemeth8566
@miklosnemeth8566 4 года назад
@@ProgramWithErik Yes, absolutely true. Anyhow, you videos on Vue are gorgeous and convincing, but now with the React hooks, React is a brutally elegant, very easy to learn, typescript-capable web app development framework, too. Vue is fantastic, sure, but the new way of React/Hook/Typescrip programming is absolutely brilliant.
@zephyzany1449
@zephyzany1449 4 года назад
我全都要
@MrXperx
@MrXperx 3 года назад
Does the framework really matter for people other than novice developers?
@ErtDonuell
@ErtDonuell 2 года назад
It does, just as a builder who may either use hammer or finger for a nail
@rajureddy7512
@rajureddy7512 4 года назад
nice man ,, good for sharing u r opinion and Knowledge on technologies ....thanks ....
@ProgramWithErik
@ProgramWithErik 4 года назад
You are welcome!
@orbitx16
@orbitx16 3 года назад
I love vue template engine most
@fancyAlex1993
@fancyAlex1993 2 года назад
I really enjoyed react more than vue ever since they introduced functional components and hooks especially the usecallback ,uswmemo and useref
@DmitriiBaranov-ib3kf
@DmitriiBaranov-ib3kf Год назад
Vue has all that, but better, with no manual dependency management
@davidasiamah2898
@davidasiamah2898 3 года назад
Vue.js is unintuitive, its language agnostic and the knowledge is not transferrable and this is a big take away as a developer.
@RaadYacu
@RaadYacu 4 года назад
Which has better lib for BLE implementation lib??
@ProgramWithErik
@ProgramWithErik 4 года назад
BLE?
@RaadYacu
@RaadYacu 4 года назад
@@ProgramWithErik Sorry - Bl;uetooth Low Energy I am coming from Ionic/angular env
@TheSaganic0
@TheSaganic0 4 года назад
​@@RaadYacu Vue wouldn't have any kind of native library like that. You could check out vue-native with expo, however.
@ChaowPorkaew
@ChaowPorkaew 4 года назад
i used ble from cordova-plugin
@ejazkarimhunzai
@ejazkarimhunzai 4 года назад
I've worked with both frameworks extensively and I feel myself Sr./Experienced Engineer with React than Vue.
@VitalyIgnatovich
@VitalyIgnatovich 4 года назад
Switched off after lengthy ad at beginning
@applepie3800
@applepie3800 4 года назад
Hey where's the Angular team? ❤️
@aseq2
@aseq2 4 года назад
The content of this video is about as structured as web development in general
@brownrhythms
@brownrhythms 4 года назад
Just started learning it last week, so too early to tell. I guess the thing I want to figure out the most is getting data from a backend API from like a Java/C# based one. Likely use Java for work and C# for personal.
@ugorjichukwudi5527
@ugorjichukwudi5527 4 года назад
It is so easy. Though I used Axios for 2 projects I worked on with java and c# as the backend.
@goonholiday656
@goonholiday656 4 года назад
It sounds like your issue is with the documentation and not the “framework” itself. One could argue that Vues templating is limiting and hard to formulate for young JS developers as opposed to JSX. Primarily because you can write your logic right in things like the map loop or console out feedback at any point in your template for debugging. Secondly getting a new developer to understand things like computed, watch, etc might be hard to grasp for younger JS developers.
@possumkeys
@possumkeys 4 года назад
I feel like the ability to write directly is what makes it more appealing. It was for me. You can debug by calling a method and console logging from the method with the data,or even just dumping the data directly on the Dom. I really disliked jsx. Seems unintuitive to me.
@patrikburda
@patrikburda 4 года назад
The biggest downside of React or Angular for me is its owned by a corporation. So whatever changes will be done to them its what that corporation needed not community.
@ArkadiyAfonin
@ArkadiyAfonin 4 года назад
I think that it’s not a good idea to compare framework and rendering library
@ProgramWithErik
@ProgramWithErik 4 года назад
Well, I did anyways. And yes 'React' is a library not a framework
@mike_stk
@mike_stk 4 года назад
Hello, im a beginner with javascript and i want to do a openvpn web interface for my raspberry pi. The web interface should be accessable from my webpage and then it has to be connect to my openvpn webserver in my raspberry pi headless setup. Have you any advice which path i should go for?
@FazendoNasCoxas
@FazendoNasCoxas 4 года назад
Svelte>Vue>React>Angular
@ProgramWithErik
@ProgramWithErik 4 года назад
Don't forget Ember!
@djRichyRichh
@djRichyRichh 4 года назад
same here.
@jmon24ify
@jmon24ify 4 года назад
I would so love to go to vueconf but it is too expensive
@ProgramWithErik
@ProgramWithErik 4 года назад
Yeah sorry :(
@udemesamuel
@udemesamuel 4 года назад
This is true.
@sholikhinagil5697
@sholikhinagil5697 4 года назад
i love you erik. please make keep making video about vue and firebase or vue full stack
@AmanNidhi
@AmanNidhi 4 года назад
why dont the whole world decide upon one framework!!!!!!!!!!
@johnm8358
@johnm8358 4 года назад
Amen
@ProgramWithErik
@ProgramWithErik 4 года назад
LOL
@DavidFregoli
@DavidFregoli 3 года назад
I'm not taking js lessons from a vampire -_-
@mahmoudahmed-fu7yd
@mahmoudahmed-fu7yd 4 года назад
Are vuejs is good for huge projects?
@tno2007
@tno2007 4 года назад
of course, i used vue for a medium to large business project. Just make sure you learn the vue plugins... vue-router and vuex.
@mahmoudahmed-fu7yd
@mahmoudahmed-fu7yd 4 года назад
@@tno2007 thank you bro
@ProgramWithErik
@ProgramWithErik 4 года назад
yes, check out Vue Enterprise Boilerplate if you want to see how a good large Vue app is created
@kristypolymath1359
@kristypolymath1359 4 года назад
I'm distracted by what looks like a piece of gum behind your teeth in your upper palette. If it's a tooth, that is unique in itself as I have never seen a tooth that far back :)
@myztazynizta
@myztazynizta 4 года назад
I've had the opposite community experience 1% of my questions in their discord get answers. 5% of my questions elsewhere get replies and only get useful answers 2% if the time. There seem to be a cloud of piss and elitism around front end development in general these days.
@ProgramWithErik
@ProgramWithErik 4 года назад
That sucks! I would try stack overflow, I’ve never had success in just posting in discord questions with any community. It’s just kind of chaotic
@JohnSmith-zl8rz
@JohnSmith-zl8rz 2 года назад
you still think the same?
@hmto919
@hmto919 4 года назад
Pls try blazor dude..hahaha *.NET Core Developer*
@stilobit6856
@stilobit6856 4 года назад
vue complicated when you create large scale able application its be a huge problem and the code become not readable after 2 weeks.
@mikehurtado4772
@mikehurtado4772 3 года назад
Next, spanish subtitle
Далее
Why I'm Switching from Vue to React
10:45
Просмотров 66 тыс.
The Difference Between Vue and React
10:27
Просмотров 37 тыс.
Why I Chose Vue.js And Ember.js Over React My Response
10:26
What Vue.js Does Better Than React
24:29
Просмотров 38 тыс.
What are my thoughts on Vue3
25:21
Просмотров 11 тыс.
Why I’m sticking with Vue in 2023
6:03
Просмотров 7 тыс.
React VS Svelte...10 Examples
8:35
Просмотров 559 тыс.
Why & When I Use React JS
9:02
Просмотров 109 тыс.
You're (Probably) Using Prettier Wrong
6:04
Просмотров 108 тыс.