JavaScript Frameworks in 2025

Поділитися
Вставка
  • Опубліковано 14 січ 2025

КОМЕНТАРІ • 100

  • @MatthewSparks
    @MatthewSparks 8 годин тому +82

    I'm here from 2026. We decided SSR wasn't the move and went for something else. Also, the JS Framework Wars escalated to real life active combat, with people pledging to newly formed nation states, such as Svelteland and Reactania. I just returned from my second deployment. It's gotten ugly.
    War refugees have mostly fled to the combined haven of Larastro, a new state birthed from the joining of the Astro and Laravel Nations. Rumor has it they have solved hunger, poverty, and the problems of resource allocation inherent to market economies. My partner continues to beg that we flee there, but my ego simply won't allow that to happen. Tomorrow I redeploy to the front lines. Make better choices than we did. I beg of you all.

    • @rajikkali
      @rajikkali 7 годин тому +6

      Come over to Nuxtonia, we have cookies and peace

    • @codefork94
      @codefork94 6 годин тому +2

      This deserves more likes 👏

    • @lutfiikbalmajid
      @lutfiikbalmajid 5 годин тому

      @@MatthewSparks Hi, What your method in 2026? What Framework do you use?

    • @vasyaqwe2087
      @vasyaqwe2087 Годину тому

      you lost me at SSR

    • @Saphronite
      @Saphronite Годину тому

      All hail the glorious motherland, HTMXSSR

  • @ofadiman
    @ofadiman 9 годин тому +73

    You guys are not using jQuery? 😮

  • @ndykman_pdx
    @ndykman_pdx 3 години тому +6

    I am baffled by the "you need some JavaScript on the server". It's not a language that provides any real benefit over the numerous other options on the server side and has very notable limitations there (events, threading, managing OS resources and so on). Sure, Node mitigates some of that, but it's nothing compared to languages that have explicit support for those features.
    I can't see going to anybody that is using Java, C# and so on and saying "Oh, you need JS to make a good web site" when they have been doing that for a very long time.

  • @boiserunner
    @boiserunner 3 години тому +3

    It's 2029 and we are all using zigscript but fighting the transpiler

  • @AlnisSmidchens
    @AlnisSmidchens 5 годин тому +7

    I've been developing stuff with no build system, no frameworks, minimal libraries, etc. - it's very productive and refreshing.
    Web components + semantic HTML5 elements make a great combination, especially with all of the JS and CSS features adopted by browsers in the past few years.
    IMO this is the way forward for web development, at least for high-performance web applications.

    • @benbowers3613
      @benbowers3613 2 години тому

      Have you been able to find a way to get data streaming to work? I have been using Go + Templ + Alpine-ajax and I can confirm it's very productive, but data streaming remains elusive.

    • @_y7ya
      @_y7ya 2 хвилини тому

      It’s quite close minded and inaccurate to think that your vanilla stack is the way forward for high performance applications. When people say stuff like you they usually have no experience building complex apps, or are just averse to learning new things. You vanilla stack is client sided only, you’re definitely going to be limited by not embracing some sort of server architecture. If your argument is it feels good to develop in, sure thats subjective. But if your argument is that’s the way forward for high performance apps, you’re just completely wrong.

  • @DevanConrad
    @DevanConrad 3 години тому +1

    Corporate stack is still 10 years behind

  • @_____case
    @_____case 9 годин тому +8

    Deno Fresh 2.0 incoming.

  • @kamiljanowski7236
    @kamiljanowski7236 Годину тому

    Regarding the length of videos, they're onto something. I used to be able to listen to your videos while walking my dog. Now I'm done walking half way through the video and I finish before you get to the juice.

  • @_RideTheTrip
    @_RideTheTrip Годину тому

    When Vercel sells all its servers, we might see something new.
    Vercel sells servers, Tailwind sell components, and TanStack sell courses - that’s all you need to know about modern technologies. In reality, we aren’t inventing new technologies; we’re finding more sophisticated ways to make money

  • @davidbronke5484
    @davidbronke5484 4 години тому

    11:58 BFF is pretty awesome in a lot of cases. Great being able to tailor things to what the client needs.

  • @_y7ya
    @_y7ya 9 годин тому +22

    Man your diagrams are something else.

    • @Efecretion
      @Efecretion 9 годин тому +1

      ? They look like diagrams to me

    • @_y7ya
      @_y7ya 9 годин тому +9

      @@Efecretion It was a compliment

    • @Efecretion
      @Efecretion 7 годин тому

      @ Oh, a figure of speech. I get it

  • @abob-henry
    @abob-henry 8 годин тому +2

    Lit doesn't get enough love, maybe because of its somewhat more targeted uses. But I've loved working with it for our main front-end library the past couple years.

  • @_y7ya
    @_y7ya 9 годин тому +10

    I've personally worked at multiple agencies using NextJS where "senior" front end engineers just slap "use client" almost everywhere... The once senior React engineer is effectively a 0.1x developer in a server first world.

    • @qwerty-or1yg
      @qwerty-or1yg 3 години тому

      Yeah, I’ve used to love nextjs before app router and all other changes afterwards. I was a junior back then and I had a hard time grasping their changes and still do. It’s confusing and messy imo. I don’t even know now what framework I’d go with if I had to build a full stack app solo. Probably angular and some BaaS as I’ve been working with it for past 4 years and I love it.

  • @PirataEscondido
    @PirataEscondido 6 годин тому +1

    Hey Google set reminder to watch this video in 3 years

  • @ymi_yugy3133
    @ymi_yugy3133 8 годин тому +3

    I like working on backend stuff, I like working on frontend stuff, but the communication between is hell.
    I just hope I can continue to work on projects where SPAs are good enough.
    If you use a decently fast framework the overhead of transforming JS+JSON into DOM should not be too much over transforming HTML into DOM.
    That is of course assuming, you don't really need SEO, work with weird browsers and you build you frontend with performance in mind. I.e. be careful with what packages you bundle and how you write your code.

  • @gageracer
    @gageracer 5 годин тому +1

    40:48 something very similar happened yesterday with svelte 5. I made a sudoku game and wanted to reset the game when you change the size value on the parent. This change triggers infinite recalls as the prop is a signal and changing the signal retriggered the $effect rendering and filling up the memory limit of the browser tab. I ended up having another gameSize state and have to check inside the $effect if size !== gameSize then allow new render. It took me 2 hours to figure that out and it sucks. It felt really backwards to not able to use the prop as a signal and still need to have it's internal state like it's an angular app lol.

  • @warmbowski
    @warmbowski 2 години тому

    I think Local First is gonna be fun to toy around with in 2025 (Dexie, Zero) and possibly bring back a new an improved Metoer.js experience.

  • @andydataguy
    @andydataguy 9 годин тому +2

    The last video really was fire 🔥

  • @ErikBongers
    @ErikBongers 7 годин тому +2

    Why do you need "some js on the server"? What's the benefit over other languages?

    • @zaccanoy
      @zaccanoy 2 години тому

      you never *need* js on the server, but in a full stack framework, js is usually your only option, because it’s the only thing that runs on the client, which is most of what theo’s talking about. some js on your server means your backend is purpose-built for your website and can harness these emerging features that allow for better routing and data hydration for users. these features do exist in some other frameworks in other languages, but they aren’t full-stack, or they provide client-side libraries to facilitate those features.

  • @travisgorski245
    @travisgorski245 6 годин тому

    Can’t wait to get to the point where I can go back to these videos And have them re wire my brain too

  • @grim.reaper
    @grim.reaper 3 години тому

    21:20 is so so so true, I hope every dev understood that 😔

  • @Luisllaboj19
    @Luisllaboj19 9 годин тому +4

    Pre-watched

  • @QueeeeenZ
    @QueeeeenZ 4 години тому +1

    Nuxt has made web dev much simpler and easier

  • @harambeexpress
    @harambeexpress 8 годин тому +1

    Prisma DB looks really cool and I'd like to build something with it, but the fact that the product has no pricing worries the hell out of me. Though, it's cool and you can use their ORM for free so I'll keep it in my back pocket.

  • @m-ok-6379
    @m-ok-6379 9 годин тому +2

    80% of frontend developers only use 20% of the JS framework they are working with.

    • @theshy6717
      @theshy6717 6 годин тому

      and 99% of gamblers quit just before they're about to hit it big

  • @grinsk3ks
    @grinsk3ks Годину тому +1

    React is the definition of a foot gun for me. I don't really get why anyone would use it instead of vue, svelte or even lit.

  • @TheBoazhoch
    @TheBoazhoch 2 години тому

    13:24 To some amount I disagree with that statement, you can have a descent user experience having no BFF. On the other hand the complexity it brings is tedious, for it you need to review, build, test, deploy, cache strategies, metrics, analytics, and lets not forget that in every 300 lines of code there is a bug.

  • @zeocamo
    @zeocamo Годину тому

    27:38 from the start of typescript, will from the start of async/await i always have the feeling this should be a complier step, we don't know need to know if a function is async or not, it should return the value or throw a error.

  • @dennissam989
    @dennissam989 2 години тому +1

    Vue vapour, knocking the door.

    • @lessko9
      @lessko9 32 хвилини тому

      Vue Vapor github repo has been abondoned for several months

  • @victor95pc
    @victor95pc 8 годин тому +1

    The biggest question I would have is why, WHY I would use Next to build a simple SPA lol, host the thing in a CDN and its done

    • @vikramkr382
      @vikramkr382 6 годин тому

      If you like next's DX/router etc and dont want server side stuff you can just not use the server side stuff and do a static export. If you don't, then idk what the question is. Or what Next has to do with a CDN - a static spa is a static spa whatever you use to make it.

  • @l3ss1sm0r3
    @l3ss1sm0r3 9 годин тому

    One horrible thing that happened to me when using a BfF is that it caused horrible race conditions in combination with (session) cookies.
    Also, having the BFF without a locking mechanism or sensible way of serializing operations with a remote service (especially when having to use refresh tokens and the remote server invalidates them once used) is a problem. Modeling that in BEAM processes seems one of the only nice ways to handle that.
    Sadly, in the project we had that problem, we used python, and collapsing the stack into a monolith was easier.

  • @rogerramjet69
    @rogerramjet69 Годину тому

    SolidJS... "drops mic"

  • @feelingfun5149
    @feelingfun5149 5 годин тому

    Theo! It's a second video in a row that I wanna watch from start to finish!😃👍

  • @peteromano9356
    @peteromano9356 6 годин тому +1

    Hey man, you can't use vite or webpack compiler magic for type/javascript, and then shit on graphql codegen shenanigans. I mean you can, but would be good to recognize the double standard. From what I can tell so far, your trpc vs gql argument is like debating vanilla js vs any framework using webpack or vite

  • @LostZenith_
    @LostZenith_ 8 годин тому +4

    This is why I love this channel. Every year he kills it and provides more value. Thanks! I'm going to be an op dev when I graduate!

  • @johnnygri99
    @johnnygri99 4 години тому +1

    Theo, build something with Angular 19 and review the experience!

  • @kabukitheater9046
    @kabukitheater9046 9 годин тому +5

    nuxt not mentioned smh

    • @lessko9
      @lessko9 30 хвилин тому

      yes it was mentioned

  • @benbowers3613
    @benbowers3613 2 години тому

    13:39 "If you don't use JavaScript on the server _some_ amount, you are almost certainly making a bad website."
    Too hot. Way too hot of a take. Data streaming is a fun UX win, but sites without it are not "bad"

  • @xj3nr
    @xj3nr 23 хвилини тому

    Where is angular??

  • @paw565
    @paw565 Годину тому

    What is the difference between tanstack query and trpc?

  • @elvispalace
    @elvispalace 42 хвилини тому

    bro, 1hr???

  • @CocoLui-i7l
    @CocoLui-i7l 8 годин тому +1

    whats app he using for diagrams?

    • @jbest84
      @jbest84 8 годин тому

      Excalidraw

  • @pry0rity-vids
    @pry0rity-vids 10 годин тому

    prisma back?

  • @OhDevBeard
    @OhDevBeard 6 годин тому

    Svelte for 2025 🎉

  • @mayuinc
    @mayuinc 7 годин тому +1

    You're an awesome teacher 💪

  • @Extjac
    @Extjac 10 годин тому

    I was looking for this

  • @epsilondelta-l1g
    @epsilondelta-l1g 9 годин тому +2

    I'm going back to jquery

  • @noahtah1511
    @noahtah1511 5 годин тому

    Saving for later but leaving comment for auto. Sending love and respect Theo and Theo fans

  • @KevinArellano
    @KevinArellano 9 годин тому

    I work with Graphql all day everyday, and I like it. Can't understand someone not say `resolver` when working with graphql lol. I do want to learn tRPC though, it's on my to-do list

  • @root-admin-youtube
    @root-admin-youtube 34 хвилини тому

    Tank you man.

  • @kocokan
    @kocokan 8 годин тому

    Meanwhile jquery devs with lamborghini:

  • @jonnyso1
    @jonnyso1 9 годин тому +1

    Speaking from 2027, I'm here researching what you barbarians were up to in the past.

  • @wizz1e80
    @wizz1e80 2 години тому

    This guy 54 mins?

  • @eduardoromaguera9707
    @eduardoromaguera9707 6 годин тому

    SRR is a mistake. They just want you to pay for cloud rendering when your users can do it 😊🤑

  • @kevas777
    @kevas777 17 хвилин тому

    I am from 2030. All js-frameworks are dead. AI generate minified js files that works better then vanilla js. No one knows what code inside these files, but no one cares, it just works.

  • @George-e9c2x
    @George-e9c2x 9 годин тому +3

    React was too busy making your website slower in 2024.

    • @FarqMuckerberg
      @FarqMuckerberg 9 годин тому +3

      It actually causes more problems than its solves and I'm not even exaggerating.

  • @maduk22
    @maduk22 8 годин тому +1

    You don’t have to use this face with everything, it dosnt suit this topic , please make new ones

  • @saieashwar870
    @saieashwar870 4 години тому

    BFF is really useful. In complex applications, it lets you aggregate data from multiple apis, have a platform agnostic business logic and even enable things like server driven ui. Depending on the use cases, more features can be added to the BFF layer (cache control, streaming of widgets in sdui, priority of widgets/api calls) etc and make the application standardized across all platforms

  • @vutruong4164
    @vutruong4164 4 години тому

    Lmao dude try his best to not put Angular inside his thumbnails when videos have to do with JS frameworks.

  • @akak5128
    @akak5128 3 години тому

    This video is so damn long!!
    lol joking trolling

  • @hicoop
    @hicoop 6 годин тому +1

    I've been bouncing around complete stacks for a while. I feel like react is the best way to build user interfaces but meta-frameworks like nextjs are so unreasonably complicated. On the other hand, a simple express api server is easy to configure but now your api lacks typesaftey. Right now I am using a bun monorepo with a trpc backend and a react router frontend. I use drizzle for my ORM and I can directly pass types to the frontend while I have a clear abstraction of server and client. I don't use things like server actions or streaming, just react query and ssr when I need.
    Would love to hear others thoughts

  • @Ava-x9z3n
    @Ava-x9z3n 10 годин тому +4

    one of the first comments, theo pls reply to this im a big fan

  • @userj-s2000
    @userj-s2000 9 годин тому

    Wait js frameworks are just react wrappers

  • @miro-hristov
    @miro-hristov 9 годин тому +1

    I miss when your videos were 10 min long

    • @t3dotgg
      @t3dotgg  8 годин тому +1

      My average video length is around 30 minutes long lol. It's rare I do short ones

    • @miro-hristov
      @miro-hristov 8 годин тому +1

      ​@@t3dotgg I know... was just playing the role of the "worst commenter" @6:29

    • @t3dotgg
      @t3dotgg  2 години тому

      @@miro-hristov oh my god I forgot that was in there 🤣🤣 you got me

  • @mehdi-idham
    @mehdi-idham 10 годин тому

    first

  • @FarqMuckerberg
    @FarqMuckerberg 9 годин тому

    His diagrams prove the point that Js has become way too complicated... Think about the front-end and how simple and well engineered SwiftUI is for the desktop and mobile. Javascript needs to die it's a terrible language riddled with congenital defects and its further proliferation is a cancer that is sucking the life out of a new generation of developers. You can't engineer your way out of bad design. A language created in a week or weekend is inadequate to run the web for the next 20 years. We need new solutions! You can keep slathering new coats of paint on the same piece of garbage but it doesn't change the fact that its a effing piece of garbage. Web3 is the only hope to turn shit around and hopefully move to a more decentralized language stack let us not forget that Js is still mostly controlled by big tech.

  • @JLarky
    @JLarky 5 годин тому

    I read the article, i watched Ryan read it on his stream. I watched Theo read it on his stream. Why am i watching the recording now? 🫣