What JavaScript framework you should learn 👩‍💻

  Рет қаралды 158,335

Coding with Lewis

Coding with Lewis

Жыл бұрын

Пікірлер: 268
@nilsz6936
@nilsz6936 Жыл бұрын
Angular: Am I a joke to you?
@loirodeja
@loirodeja Жыл бұрын
yes
@phunguyen858
@phunguyen858 Жыл бұрын
Yes
@RikThePixel
@RikThePixel Жыл бұрын
Yes, in fact it is a joke
@RikThePixel
@RikThePixel Жыл бұрын
Yes, in fact it is a joke
@dontreadmyusername6787
@dontreadmyusername6787 Жыл бұрын
Yes ,indeed it is
@kinershah464
@kinershah464 8 ай бұрын
Svelte rocks man. Easy to learn and follow. It should be used more for company projects, that way its full potential can be tested, I am sure devs would love it in their company projects.
@sreesen3159
@sreesen3159 6 ай бұрын
Yes! I was going through it today and I loved it, I felt like using svelte is much easier than react
@kinershah464
@kinershah464 6 ай бұрын
@@sreesen3159 Keep it up 👍
@PHAL__
@PHAL__ Ай бұрын
"What's the best framework?" "Every framework has pros and cons, so no metter what option you choose, its Solidjs"
@aroncanapa5796
@aroncanapa5796 Жыл бұрын
in before "rEaCt iSnT a FrAmEwOrk"
@loopje
@loopje Жыл бұрын
Why not? I’m new
@aroncanapa5796
@aroncanapa5796 Жыл бұрын
@@loopje because react main goal is rendering the ui and not other aspects such as form creation which you can use things like formik or react hook form, or for network requests you can use axios, im still kind of new to this too with only 5 months in so not too good at explaining this stuff
@Kinyanjui_765
@Kinyanjui_765 Жыл бұрын
@@loopje its a library React is concerned only with rendering the ui which leaves many things to each project to put together.....e.g Redux for state management
@baka_baca
@baka_baca Жыл бұрын
@@Kinyanjui_765 but then maybe avoid Redux unless it's absolutely necessary. There's other far simpler options that get the job done just as well if not better without any esoteric terms.
@codyschexnider3863
@codyschexnider3863 Жыл бұрын
@@Kinyanjui_765 React Hooks, Context API
@Samuftie
@Samuftie Жыл бұрын
Hands down, svelte deserves more.
@jeromeyoung6047
@jeromeyoung6047 Жыл бұрын
Straight up man! Easily the best framework to dive straight into from learning vanilla js.
@ammariqbal8363
@ammariqbal8363 Жыл бұрын
My first experience was with react but then I discovered svelte
@zubayrganiyuseun6387
@zubayrganiyuseun6387 Жыл бұрын
Same here
@Jorge78712
@Jorge78712 Жыл бұрын
same, I fell in love with svelte
@theworldismine7788
@theworldismine7788 11 ай бұрын
Which to choose? Vue or Svelte?
@kbve
@kbve 10 ай бұрын
Astro , so you get it all :D@@theworldismine7788
@blackpurple9163
@blackpurple9163 9 ай бұрын
​@@theworldismine7788chose anything?
@johnavernia1026
@johnavernia1026 Жыл бұрын
Svelte is fun. Make you want to code and make things.
@carlnxlvl6455
@carlnxlvl6455 7 ай бұрын
True. It's easy to make things.
@MegaJehanzaib
@MegaJehanzaib Жыл бұрын
React pays the bills, Svelte and Vue keep you happy for personal projects.
@drugoviic
@drugoviic 9 ай бұрын
vue pays my bills, Svelte keeps me happy
@Viralvlogvideos
@Viralvlogvideos Жыл бұрын
Angular and Solid: We are too. React: I'm a library bro not a framework.
@adityaanuragi6916
@adityaanuragi6916 Жыл бұрын
The best library/framework is the one you can finish projects with and have fun doing it
@distant6606
@distant6606 Жыл бұрын
fax
@saber8387
@saber8387 Жыл бұрын
So learn all the framework and choose the one that works the best for me?
@BrentMalice
@BrentMalice 6 ай бұрын
yeah ill just learn em all first lmao
@alejomakevids
@alejomakevids Жыл бұрын
the best is the one it's giving me money right now.
@object.toString
@object.toString Жыл бұрын
Nice name
@funnyanimalworld7579
@funnyanimalworld7579 Жыл бұрын
Best answer
@tomascz
@tomascz Жыл бұрын
SvelteKit❤️
@jettisonlightfeather9619
@jettisonlightfeather9619 Жыл бұрын
Svelte. Svelte out of those 4. If only people were to invest in it like how they do for React..
@lennart5738
@lennart5738 Жыл бұрын
Svelte doesn't scale. It lacks proper solutions for managing shared state and derived state. It's also not very transparent, acting like a black box. Much like vue and angular
@Boobouh
@Boobouh Жыл бұрын
​@@lennart5738 I doubt you tested the new vue 3 composition api before saying that. Much more es6 Js oriented and typeScript friendly. And how is React is less a "black box" anyways
@lennart5738
@lennart5738 Жыл бұрын
@@Boobouh Composition api look nice I hadn't seen that before. I last used vue in earnest when it was v2 yeah. But it still has their own non-standard templating language with pseudo-html directives like v-for and v-if. it's much less transparent what happens behind the scenes when you do that. React is less of a black box because you know exactly how the ui updates work because calling setState just triggers the function to run again. easy, simple and transparent. no proxies, no weird template processing of pseudo-html. it forces you to think correctly about your state and conditional logic. Even JSX is an extremely simple processor that doesn't do much more than simple regex replace would do. hooks make it so easy to micromanage your own component performance.
@mileselam641
@mileselam641 11 ай бұрын
@@lennart5738Shared state in Svelte is covered by stores and contexts. Derived state is through… wait for it… derived stores. Not transparent? Go ahead and look at the code the compiler generates. It is substantially similar to the code you have written, just with some instrumentation sprinkled in, especially in Svelte 4.
@kinershah464
@kinershah464 8 ай бұрын
I agree man. Svelte needs more attention in company projects.
@CodingWithLewis
@CodingWithLewis Жыл бұрын
What JavaScript framework do you use!? 🤔
@engrsi
@engrsi Жыл бұрын
react.js
@CodingWithLewis
@CodingWithLewis Жыл бұрын
@@engrsi me too!
@jettisonlightfeather9619
@jettisonlightfeather9619 Жыл бұрын
React and Svelte
@ammariqbal8363
@ammariqbal8363 Жыл бұрын
I use both react and svelte. From my experience, svelte is much much better than react and has a great developer experience than any other framework out there
@VenkiNagaraj
@VenkiNagaraj Жыл бұрын
ReactJS and angular 6
@adrian333dev
@adrian333dev Жыл бұрын
My first framework was React(library) and now I'm using Angular, And one thing I'm absolutely sure about is that React is complete garbage comparing to angular
@vutruong4164
@vutruong4164 8 ай бұрын
Kinda agree, the only gripes I ever had with Angular is: 1. Its opaque tooling (build, test, dev server, etc), which caused it to fall behind in adopting things like Vite, Vitest, Jest, ESbuild, etc. 2. The unnecessary abstraction/distraction of NgModule. The only module systems should be ESModule. Luckily this is no longer the case with standalone components and simplified dependency The core part is just amazing, and will even be more amazing when you can use Signal (+ RxJS interop) for declarative state management.
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
Fun fact: for most of those "frameworks" you need another meta-framework to build serious apps. For example, there is Next for React, Nuxt for Vue, and Svelte Kit for Svelte. Which really raises questions about how much of a framework those things are. Angular on the other side really is very framework.
@tikonito
@tikonito 4 ай бұрын
Svelte is nice, we had a very close 4 month relationship. They made a weird choice with the directory/file thing in one of the last update, but that's not really a problem.
@sierragutenberg
@sierragutenberg 4 ай бұрын
Choose a framework ❌ Build a new framework from scratch ✅
@joeandjoeable123
@joeandjoeable123 Жыл бұрын
Don't forget Solid. It's intentionally new and delays features in order to make sure to choose the best ones. It's like React syntactically but with changes to make it easier for beginners. It's also one of the fastest front end frameworks. It is also seemingly the fastest npm-integrated framework
@rishabhgusai96
@rishabhgusai96 Жыл бұрын
Angular anyday everyday
@timzyao1927
@timzyao1927 Жыл бұрын
Been waiting for the video 🥳
@CamaguNcoso
@CamaguNcoso 8 күн бұрын
I'm minding my business while learning JavaScript
@iulikdev
@iulikdev Ай бұрын
Only SvelteKit... forever!
@edwingarcia5043
@edwingarcia5043 Жыл бұрын
Reac... Reach your own conclusions.
@RiversBliss
@RiversBliss Жыл бұрын
The one mostly used in the industry in which you reside, most in demand in your country.
@alveek
@alveek Жыл бұрын
It's not about you. It's about what market uses. And it's React. For your pet projects use whatever you want.
@jenstornell
@jenstornell Жыл бұрын
Wrong! If you keep using what everyone else is using the evolution stops. Vue would not exist and it has gone past React, mainly because React is just a side project to Facebook.
@fumano2679
@fumano2679 10 ай бұрын
Yes and think like this: if everyone learns the most popular then there will be the most people applying for those jobs while the job offers of the not so popular frameworks are more likely to get.
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
How do you measure what "the market" uses and how does it matter for the next project?
@varshakapil8224
@varshakapil8224 Жыл бұрын
Without angular this video hurts me 🤣
@pelihahmo6951
@pelihahmo6951 Жыл бұрын
Cool
@parthipankalayini8
@parthipankalayini8 Жыл бұрын
Frontend -: Next js Backend -: Fastify js
@timalk2097
@timalk2097 Жыл бұрын
nextjs is still react lol
@veilovv
@veilovv 2 ай бұрын
​@@timalk2097 it's react from another dimension
@jnk_626
@jnk_626 Жыл бұрын
What about Angular?
@CodingWithLewis
@CodingWithLewis Жыл бұрын
There’s too many for a single video!
@johnychinese
@johnychinese Жыл бұрын
@@CodingWithLewis You mean a short Just playing mate, great video. Been using react since and it's really been fun
@notarandom7
@notarandom7 Жыл бұрын
@@johnychinese no he actually means for a single video. Even if he was able to make one, the video would be outdated in a day
@BluePhantomGames
@BluePhantomGames Жыл бұрын
react + typescript = madness
@shapelessed
@shapelessed Жыл бұрын
React + anything = pain. Svelte is what Kotlin is to Java, what Go and Rust are to C++... Cleaner, easier to work with, less error prone due to higher simplicity... I'm not saying React is bad, but it's not the best, shich implies there are better frameworks. Svelte and Vue are certainly among them.
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
@@shapelessed While I really like a lot of ideas behind Svelte I think this comparison fails, because Svelte is not a different programming language and compiler, but Go and Rust are compared to C++. Kotlin is a bit of a special case because it also uses the JVM, but to my knowledge in normal cases, it does not compile to Java source-code.
@MostafaAhmedAhmed81
@MostafaAhmedAhmed81 Жыл бұрын
After years, I gave up all frontend work and focused only on backend. I hate frontend coding. I also started my journey with iOS development, which I really appreciate.
@alejomakevids
@alejomakevids Жыл бұрын
Isn't IOS still considered frontend as well?
@MostafaAhmedAhmed81
@MostafaAhmedAhmed81 Жыл бұрын
@@alejomakevids You know frontend is known for web. I was going to type web frontend but forgot because we used to call it like this. Just check you username. 😀 It’s the JS hell you know.
@kittymedusa3618
@kittymedusa3618 Жыл бұрын
Svelte 🎉
@engageintellect
@engageintellect Жыл бұрын
Svelte > Next > everything else
@thamidudharshitha5515
@thamidudharshitha5515 Жыл бұрын
I admire you for the last part. Whatever you choose is the best framework. That is absolutely true. I hate it when people say this is the best and you must use this. Because all I learned over the past few years in the industry is, there is no such thing as called silver bullet. Everything has its' pros and cons. It's all about how you make use of it.
@xtraszone
@xtraszone 2 ай бұрын
Justise for Angular
@bandanaboii3136
@bandanaboii3136 Жыл бұрын
React is very frustrating to work with... not sure what the point really is
@bogdanbuduroiu5889
@bogdanbuduroiu5889 Ай бұрын
Don’t learn a framework, learn how to program JavaScript… then USE a framework that suits your project
@JRischill
@JRischill Ай бұрын
The problem is that learning a new framework every single time just to incorporate it into projects will take a toll on your the organization especially if theres a tight deadline. Plus you have to go through the curves of learning it. That's one of the reasons why most companies will require people applying to have atleast have some proficiency in a particular framework
@jwoods9659
@jwoods9659 21 күн бұрын
JS echosystem is a cluster f
@malanbandara
@malanbandara Жыл бұрын
I have heard that React is not a framework, it's a library made by fb. What do you guys think?
@thecoolnewsguy
@thecoolnewsguy Жыл бұрын
Yes because you need to install a lot of third party libraries and hence it's a library unlike Angular for example.
@lambo1707
@lambo1707 Жыл бұрын
angular is really underrated
@wilsondouglas1546
@wilsondouglas1546 Жыл бұрын
very true but i think the learning curve is what scares people away more so the ever dreaded RXJS but all i can say once you master angular there's no going back once heard a senior dev say angular is like black coffee without sugar at fiurst your taste buds will not want but as soon as they get used to it they will not want you to stop cheers
@lennart5738
@lennart5738 Жыл бұрын
Angular is very overrated.
@wilsondouglas1546
@wilsondouglas1546 Жыл бұрын
@@lennart5738 please explain what you mean and before you do have you used it?
@lennart5738
@lennart5738 Жыл бұрын
​@@wilsondouglas1546 Yes. Angular comes with batteries included, this means it has a lesser ability to improve over time. Like how React and Redux used to be almost synonymous but state management has been massively improved over the years and no new project uses that. The main issue with angular is twofold: 1) They force you to use too many abstractions out of the box (typescript, rxjs, DI, etc.) 2) They hide state management away behind proxies and decorators which makes state management less transparent, resulting in people writing less performant code. Angular also uses their own weird directive system instead of just giving you javascript in your templates which is both less intuitive and less powerful. Angular also has it's own very specific tooling which means it does not benefit from the past few years of optmiizations in bundlers (vite, parcel, esbuild, swc, turbopack) resulting is a slower development workflow (see: github.com/vitejs/vite/issues/543) Angular is by design, stuck in the past. it is the modern day jQuery. My recommendation is, if you like writing your components OOP-style with custom template directives, try out vue. vue is faster, better supported by modern tooling, more modular and easier to learn If you prefer writing functional components that are self-contained though, consider using React. React with react-hook-formand react query is a nice starting point for a modern functional javascript app
@wilsondouglas1546
@wilsondouglas1546 Жыл бұрын
@@lennart5738 thanks for the reply but firstly we can agree all that you've said is a very subjective opinion and not objective 1. in this sense that its not factual coz if it was then there ought to be a list of things by which you qualify something as legacy and in this instance you havent provided a gloabal list of univesally accepted standards to call something obsolete quick example like the versioning of ECMA there are set standards accepted to know the diffrence between ECMA versions 2.again this soildifys point one in this senses you say that angular forces you to do things in a certain way granted you wouldnt want that well to that i will say more power to you but is there a chance even in the miniutest form that there are actualy developers who like things that way and i believe you would say yes and to that i say that's a matter of prefrence and to you it seems you dont like that wich is still a good thing but is not a fact 3.again you say state management is hidden behind proxies and decorators this just gave me a smile and makes me wonder if you really have used angular state managment isnt hidden behind a stone wall that you cant access and see what is being done.we have multiple libraries by which you can have state management from simple libraries such as akita and observable-store all the way to complex things such as ngrx & ngrs you can have state mangement at component level to state managment globally depending with your needs at the time Finally you say angular is the modern day JQuery gave me a good laugh to this that i will say is just an opinion make it stick with objective reasonalbe points earn that statement let me give an example we both have cars you have a sedan and i have a truck/lorry (dont know what part of the worldyour from) they both use diesel (diesel being metaphoric for JS) your carcan do 0-60 in lets say 6 sec my track does 0-60 in 20sec but my track can carry way much weight and has more power output from the engine than your car hence different cars for different works to conclude i think we can both agree that the end user doesnt really care what tool we use as long as they get a great user experience and a real world effecient app be blessed
@alpaarx
@alpaarx Жыл бұрын
Svelte!
@hshhsjhahsvs7728
@hshhsjhahsvs7728 Жыл бұрын
Urmmm.. Angular?
@shapelessed
@shapelessed Жыл бұрын
I tried learning React... And I say "tried" because its performence, size, overcomplicated and ugly nature of JSX made me give up after just a few days... Then I found Svelte and managed to learn in a day what would take months with React... It's easier, cleaner, faster, lighter and generates smaller packages than React... I was the lucky one to pick the framework our team is working with and they're all thanking me for it to this day.
@eddyk564
@eddyk564 Жыл бұрын
Svelte is so much better than React because it is so similar to Vanilla JS....but better
@vetrivendhan6122
@vetrivendhan6122 Жыл бұрын
React with MillionJS is good as native javascript performance. By ignoring bundling size.
@abysmal7682
@abysmal7682 Жыл бұрын
I think astro should be added to the list
@kinershah464
@kinershah464 8 ай бұрын
What's that?
@Oggy-WanKenobi
@Oggy-WanKenobi 6 ай бұрын
Does svelte being a compiler even matter if a website is static/ssr?
@jenstornell
@jenstornell Жыл бұрын
If I use Vue for building tools today, will I be better off switching to Svelte? I don't rely on Vue specific libraries. Reactivity and data store is very important for me. Please only reply if you have tried them both.
@SameAsAnyOtherStranger
@SameAsAnyOtherStranger Жыл бұрын
Ima still find out for myself, but how well is Bun doing?
@aabluedragon
@aabluedragon 22 күн бұрын
SolidJS.
@ThannMalin
@ThannMalin Жыл бұрын
This guy never know how good is angular.
@wilsondouglas1546
@wilsondouglas1546 Жыл бұрын
the learning curve is what scares most away but once you get around it you apprecite the power angular brings to the table
@wafi5576
@wafi5576 8 ай бұрын
​@@wilsondouglas1546 the exact reason why i went with angular is because every comparison just talks about how easy react is ( implies surface level features ), how many users it have ( implies high competition on the job market - you lose your uniqueness), and how its small is size and really fast (this is the best thing i agree about in react).
@Rumplestiltzchen
@Rumplestiltzchen Жыл бұрын
I like 5js if that counts. Not really sure what a framework is. I just assume it's like a c++ library
@notarandom7
@notarandom7 Жыл бұрын
I personally think that Astro is the best framework!
@_Elaris
@_Elaris 8 ай бұрын
And for the back ?
@arcstur
@arcstur Жыл бұрын
Javascript and "insane performance" in the same sentence seems a bit weird to me 😝
@AppleSodaGaming
@AppleSodaGaming 10 ай бұрын
Please youtube stop showing random tiktok shorts instead show this kind of shorts
@konga8165
@konga8165 Жыл бұрын
Nextjs no competition
@grizzled952
@grizzled952 Жыл бұрын
We have been using Svelte And Sveltekit the last year or so at our company and it has been amazing! I can highly recommend svelte and sveltekit. SvelteKit is also soon going 1.0!
@monkmodelandon2024-kh6ot
@monkmodelandon2024-kh6ot 4 ай бұрын
Svelte is bliss
@jacobstordahl186
@jacobstordahl186 Жыл бұрын
I would disagree that Svelte is immature. The ecosystem is the only thing that needs to grow, but you can use Vanilla JS libs out of the box
@countercode
@countercode Жыл бұрын
Hey! what about qwik?!?!
@eineatombombe
@eineatombombe Жыл бұрын
Solid JS - react but faster and less popular Qwik JS - very new, react but you have to add $ almost everywhere and it's even faster
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
As far as I know Qwick even allows you to use React components.
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
Faster in doing what?
@eineatombombe
@eineatombombe 2 ай бұрын
@@TheddunTOSS updating dom
@ndasura1587
@ndasura1587 24 күн бұрын
React is library
@shaharluftig9393
@shaharluftig9393 Жыл бұрын
What about Solid!
@Kingerious_
@Kingerious_ Жыл бұрын
How about astro?
@vinodsaggam2157
@vinodsaggam2157 Жыл бұрын
You missed NextJS
@laxmanadhikari3989
@laxmanadhikari3989 Жыл бұрын
I don't know why but I find Vue very easy the react .
@SAL404w
@SAL404w Ай бұрын
I prefer vanilla lol
@berthasebastian1490
@berthasebastian1490 5 ай бұрын
There is no language barrier for vue documentation??? 😅
@umermalik2907
@umermalik2907 9 ай бұрын
And what about angular
@blujosi
@blujosi 26 күн бұрын
vue has a great documentation, also vue language barrier in documentation ...WTF.
@urssaf343
@urssaf343 7 ай бұрын
jQuery for the oldschool OGs yo'
@yukendhiran8043
@yukendhiran8043 Ай бұрын
Mean while the op watching this meme: qwik , angular+wiz
@shadowstar751
@shadowstar751 Жыл бұрын
2 things are infinite: the world and js libs
@skywalkersohan8656
@skywalkersohan8656 Жыл бұрын
Actually none of those are infinite.
@aldi_nh
@aldi_nh Жыл бұрын
@@skywalkersohan8656 world is literally infinite and still expanding even now what do you mean it's not?
@skywalkersohan8656
@skywalkersohan8656 Жыл бұрын
@@aldi_nh Infinite can't expand only finite things can.
@aldi_nh
@aldi_nh Жыл бұрын
@@skywalkersohan8656 what rule is that? If it can't expand, then it has limit, does that count as infinite?
@aldi_nh
@aldi_nh Жыл бұрын
@@skywalkersohan8656 does infinite loop can't expand as well?
@rob-890
@rob-890 5 ай бұрын
I'm not sure exactly how much this guy knows about anything remember his Tier List
@moltony
@moltony Жыл бұрын
what is a javascript
@jenstornell
@jenstornell Жыл бұрын
Well, it's not Java.
@tuvelout
@tuvelout Жыл бұрын
Me still noob about this
@TH-lu9du
@TH-lu9du Жыл бұрын
I don't get the language barrier concern for a framework documented in English. Is there a particular non English speaking country it's popular in?
@MikeDest
@MikeDest Жыл бұрын
Remember when we didn’t over think everything and just used vanilla js?
@wafi5576
@wafi5576 8 ай бұрын
i actually believe that if you built you app in vanilla js , you would be more comfortable with you work than with a framework., the close you are to the source is alway better.
@AveN7ers
@AveN7ers Жыл бұрын
Learn react and angular if you want to get a job
@TheddunTOSS
@TheddunTOSS 2 ай бұрын
A framework to do what? Modern JS isn't only about rendering UI and adding functionality to triggered UI events.
@TechleadConsulting
@TechleadConsulting Жыл бұрын
Next
@markyer3996
@markyer3996 Жыл бұрын
SolidJS is even faster than Svelte and has syntax similar to React. Also, Astro is pretty cool, it allows you to use multiple frameworks and libraries in one application
@thecoolnewsguy
@thecoolnewsguy Жыл бұрын
Which is an approach not recommended. Always try to use one framework for a single project
@idiomaxiom
@idiomaxiom Ай бұрын
SheepBerry tho
@anhvuuc8693
@anhvuuc8693 Жыл бұрын
How about Qwik ?
@OM-bs7of
@OM-bs7of 11 ай бұрын
No.
@hebertarya8799
@hebertarya8799 10 ай бұрын
react is framework or library? or both?
@yoshiyoshi6
@yoshiyoshi6 8 ай бұрын
Is a library
@aargomemnon
@aargomemnon Жыл бұрын
Angular > React
@blutorials3911
@blutorials3911 Жыл бұрын
*which
@infiteri6030
@infiteri6030 Жыл бұрын
Vanilla guy (or kid [13]) here
@jenstornell
@jenstornell Жыл бұрын
Vanilla will win in the long run but that is probably 20 years in the future.
@infiteri6030
@infiteri6030 Жыл бұрын
@@jenstornell hopefully
@SyedShujashah
@SyedShujashah Жыл бұрын
React is a UI library not a framework.
@nagendradevara1
@nagendradevara1 Жыл бұрын
Angular is the good javascript framework.🅰️
@One_from_you
@One_from_you Жыл бұрын
guys what about node...is it preferrable
@twentyeightO1
@twentyeightO1 Жыл бұрын
It's a runtime for js, not a framework.
@thecoolnewsguy
@thecoolnewsguy Жыл бұрын
And it's used for backend
@user-yw3xd6ng3c
@user-yw3xd6ng3c Жыл бұрын
Нормальные пацаны идут в Ангуляр
@mohamedsulaimaansheriff9787
@mohamedsulaimaansheriff9787 Жыл бұрын
Is Angular dying?
@thamidudharshitha5515
@thamidudharshitha5515 Жыл бұрын
Nope, heavily used in enterprises.
@rojaachan
@rojaachan Жыл бұрын
Not at all. I use Angular myself there’s just more of a demand for React in the market.
@nagendradevara1
@nagendradevara1 Жыл бұрын
NO, infact it is a reliable js framework with nice features like reactive forms etc
@wafi5576
@wafi5576 8 ай бұрын
@@rojaachan do you think there is a lot competition with the demand that react have.
@rojaachan
@rojaachan 8 ай бұрын
@@wafi5576 I would say so yes but I can’t confirm as I don’t work with react as much as someone who does. I use Angular for work and I’m based out of Florida. Depends on the area too
@abdirahmanfarah1787
@abdirahmanfarah1787 Жыл бұрын
JQuery??!?
@thecoolnewsguy
@thecoolnewsguy Жыл бұрын
That's not a framework also it's now mostly used for legacy codebases
@playvideogames369
@playvideogames369 Жыл бұрын
React is a good option to understand how libraries/frameworks work (and to pay the bills). Vue is a good option if you want to learn Chinese, it has an original Chinese docs. Svelte is simply fun to use, and it combines all the goods from it's predecessor.
@j.r.r.tolkien8724
@j.r.r.tolkien8724 Жыл бұрын
Yeah there's no lack of clear Documentation for Vue. It's the best. But then again all frameworks have the same weakness and that's being frameworks. They inevitably get too abstract complicated and enforce bad methodologies. It's the tradeoff between consistency and freedom.
@nandohillman5629
@nandohillman5629 Жыл бұрын
Stop using frameworks and bloating your stuff
@jenstornell
@jenstornell Жыл бұрын
Svelte is called a compiler. Maybe that is the future.
@shreyash577
@shreyash577 Жыл бұрын
Sorry but react is not a framework this can confuse beginners Please correct this if possible. no hate only respect for you and your content 🫡
How to OVER Engineer a Website // What is a Tech Stack?
11:20
Fireship
Рет қаралды 2,3 МЛН
40 APIs Every Developer Should Use (in 12 minutes)
12:23
Coding with Lewis
Рет қаралды 294 М.
🌊Насколько Глубокий Океан ? #shorts
00:42
She ruined my dominos! 😭 Cool train tool helps me #gadget
00:40
Go Gizmo!
Рет қаралды 63 МЛН
Mindset of Successful Programmers
4:56
bigboxSWE
Рет қаралды 986 М.
i didn't know these svelte tips
18:56
Nev the Dev
Рет қаралды 3,2 М.
I built the same app 10 times // Which JS Framework is best?
21:58
Fireship
Рет қаралды 2,5 МЛН
Nesting "If Statements" Is Bad. Do This Instead.
1:00
Flutter Mapp
Рет қаралды 3,6 МЛН
35 Things Every Programmer Should Know
18:01
Coding with Lewis
Рет қаралды 50 М.
Python in 100 Seconds
2:24
Fireship
Рет қаралды 2,5 МЛН
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
iPhone 16 с инновационным аккумулятором
0:45
ÉЖИ АКСЁНОВ
Рет қаралды 1,3 МЛН
1$ vs 500$ ВИРТУАЛЬНАЯ РЕАЛЬНОСТЬ !
23:20
GoldenBurst
Рет қаралды 1,4 МЛН
Simple maintenance. #leddisplay #ledscreen #ledwall #ledmodule #ledinstallation
0:19
LED Screen Factory-EagerLED
Рет қаралды 13 МЛН
Игровой Комп с Авито за 4500р
1:00
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 1,7 МЛН
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 4,8 МЛН