Next.js 15 Is Here (Vercel Ship Breakdown)

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 251

  • @furycorp
    @furycorp 6 месяцев назад +471

    Whose excited about rewriting their app every 6 months to keep up with their framework's endless experiments and rediscovery of web dev lessons from the early 2000's? NextJS devs!

    • @nejatnjonjo
      @nejatnjonjo 6 месяцев назад +14

      Angular started the (every 6 months) trend long time ago

    • @yiannis_p
      @yiannis_p 6 месяцев назад +23

      Try writing in python 😂😂
      React and web dev are some of the most backwards compatible ways to write software

    • @jiwachhetri7317
      @jiwachhetri7317 6 месяцев назад +52

      That's why I'm still on next js 11. They have too much time in there hand to over engineer problems which doesn't exist.
      At the end of the day, it's just a website. That's it. Maybe a fraction of second of performance improvement - that's it - nothing more. It's not going to increase conversation rate, nor is it going to increase company value.
      Major companies still use jQuery and they are working completely fine.

    • @pmacdonald15
      @pmacdonald15 6 месяцев назад

      useFromState, useActionState?

    • @CodingAbroad
      @CodingAbroad 6 месяцев назад +3

      @@nejatnjonjono it didn’t, only between versions 1 and 2

  • @lalithrockz
    @lalithrockz 6 месяцев назад +151

    All the next14 courses are breaking sweat

    • @statuschannel8572
      @statuschannel8572 6 месяцев назад

      i believe the breaking changes would be low compared to the previous versions

    • @lalithrockz
      @lalithrockz 6 месяцев назад

      @@statuschannel8572 yeah, it is just very recently that I think most instructors have released their next14 courses.

    • @l2ob1222
      @l2ob1222 6 месяцев назад +1

      little to no breaking changed changes like the previous ones

    • @carloslfu
      @carloslfu 6 месяцев назад +4

      Wait ... I'll be dropping a Next 13 course next month!

  • @ahmadmuslih
    @ahmadmuslih 6 месяцев назад +147

    Can't wait for next js 16 next month

    • @RubixCubed3
      @RubixCubed3 6 месяцев назад +10

      And then Next 17 the day after that.

    • @null_spacex
      @null_spacex 6 месяцев назад +4

      Yall annoyed or something

    • @RubixCubed3
      @RubixCubed3 6 месяцев назад

      @@null_spacex crazy concept, but people don’t have to be annoyed at something to make fun of it. They can make fun of something just for the lols.

    • @null_spacex
      @null_spacex 6 месяцев назад

      @@RubixCubed3 crazy concept, but people don’t have to think or assume something in order to ask a question that insinuates it. The question can be part of the fun that’s being made as well.

    • @RubixCubed3
      @RubixCubed3 6 месяцев назад

      @@null_spacex first off I don’t see a quest that was asked, just comments, so I don’t understand why you said ask a question. Second, pretty hypocritical of you to say we assume something when you assumed we were annoyed.

  • @HelloWorld-lh1wk
    @HelloWorld-lh1wk 6 месяцев назад +88

    we have React 19 and Nextjs 15 before GTA VI

    • @oliversaxon8656
      @oliversaxon8656 6 месяцев назад

      mental!!

    • @dopetag
      @dopetag 6 месяцев назад +1

      I will get Next.js 17 before GTA VI

    • @Behold-the-Florist
      @Behold-the-Florist 6 месяцев назад

      😂 crazy world

    • @succatash
      @succatash 3 месяца назад

      @@HelloWorld-lh1wk what comes first react 25 or GTA7

    • @HelloWorld-lh1wk
      @HelloWorld-lh1wk 3 месяца назад

      @@succatash probably React 30

  • @aldosch
    @aldosch 6 месяцев назад +68

    2:39 Another benefit of feature flags on the server is no cumulative layout shift while waiting for a client-side flag to be processed

    • @Mikko-fr9ut
      @Mikko-fr9ut 6 месяцев назад +4

      10000 times this. We use client-side feature flags loaded async ( thanks management (: ) and it's ATROCIOUS with the layout shifting a bunch of times, spinners that lead to nothing ( the component it's waiting for is disabled by a feature flag :D ), a mess

    • @carloslfu
      @carloslfu 6 месяцев назад

      Hell yes!

  • @PhilipAlexanderHassialis
    @PhilipAlexanderHassialis 6 месяцев назад +81

    6:40 - I have to disagree on that. We faced numerous security issues with next-auth and Next's Link component that forces caching. No, I *don't* want to cache the Link. I want everything that user does go through my security middleware. If I change a user permission to not allow a specific route I *don't* want this route to be cached for 30 seconds, I want the user to be redirected to the Forbidden page immediately. This was a valid security concern and finally they saw the light. If I want caching on something, make it opt-in, via an attribute and/or something on a Layout level.

    • @aberbaCodes
      @aberbaCodes 6 месяцев назад +8

      Your use case is niche and it's not like you can't disable that behavior. I wouldn't consider this point an issue

    • @Y-JA
      @Y-JA 6 месяцев назад +49

      ​​​@@aberbaCodesAuth and guarded routes are niche now? Give us a break shill

    • @rand0mtv660
      @rand0mtv660 6 месяцев назад +28

      @@aberbaCodes how is basic authorization a niche?

    • @aberbaCodes
      @aberbaCodes 6 месяцев назад +7

      @@Y-JA what he is doing is a guarded/authenticated route that needs to be administered dynamically and take effect immediately... he's saying 30 seconds is too long. His own words. You can set or disable this behavior in the config. Doesn't take 5 seconds and it's definitely not a security issue.
      Very few RBAC apps do that and it's mostly a multi-user enterprise feature.

    • @danielf4438
      @danielf4438 6 месяцев назад +5

      @@aberbaCodesright? What is even a valid, common use case when you need to invalidate the auth route cache in less than 30s ?

  • @WizardOGF
    @WizardOGF 6 месяцев назад +117

    Horrible default cache behavior burned me worse than you can possibly imagine

    • @carloslfu
      @carloslfu 6 месяцев назад

      I feel ya!

    • @blankcheckguy69
      @blankcheckguy69 6 месяцев назад +1

      what happened

    • @jeffvalore5010
      @jeffvalore5010 6 месяцев назад +1

      same. it's like they cared more about time to first render, than caring about showing actual valid content. It took me so long to figure out how to do sign in/out because of the damn cached content showing things as if you were still logged out after logging in.

    • @SandraWantsCoke
      @SandraWantsCoke 6 месяцев назад +2

      whatever does not kill you makes you stronger

    • @carloslfu
      @carloslfu 6 месяцев назад

      @@SandraWantsCoke Next made me have awesome abs!

  • @J1Jordy
    @J1Jordy 6 месяцев назад +5

    The number of problems I had when first starting with Next that eventually turned out to be caused by caching is mind blowing. Glad they're changing it but it was long overdue.

  • @DeanRTaylor
    @DeanRTaylor 6 месяцев назад +7

    Nextjs and Vercel are showing us the exact reason sales, product and design are in charge of business decisions and engineers are given clear goals they have to achieve. Engineers have too many smart ideas and love over engineering and over explaining things.
    In 8 years we've gone through 15 versions, for a framework that is a hell of a lot of breaking changes. It seems like they don't even believe this is a good way to build frontends.

    • @adtc
      @adtc 6 месяцев назад

      Surely there are alternatives. What are your favorites?

    • @DeanRTaylor
      @DeanRTaylor 6 месяцев назад

      @@adtc that's a good question. I do still like writing react. I just don't think I will use nextjs for a new project again, I still have one live project using it. Since then I've used laravel livewire, phoenix liveview, astro and one small project using using vanilla js and html templates with gos standard library, I think all of them can be considered more stable.
      The backend first approach makes deployment so much easier.

    • @neneodonkor
      @neneodonkor 6 месяцев назад

      ​@@adtc Nuxt. It just works

  • @AndrieMC
    @AndrieMC 6 месяцев назад +115

    They deleted the entire framework?

    • @cyberducc
      @cyberducc 6 месяцев назад

      Lmao

    • @lisongyun
      @lisongyun 6 месяцев назад +2

      I think the same.

    • @koksikskkj7937
      @koksikskkj7937 6 месяцев назад

      They just repaired this

    • @cherubin7th
      @cherubin7th 6 месяцев назад +1

      Sounds like it

    • @AndrieMC
      @AndrieMC 6 месяцев назад

      "We deleted the bad parts" - Thumbnail (fake tweet)

  • @kale_bhai
    @kale_bhai 6 месяцев назад +17

    9:20 bruhhhhh
    30-second stale time on navigation, just found out last week.
    Mann, how many hours did i waste to debug it?

  • @dkr91
    @dkr91 6 месяцев назад +1

    I actually love the WAF addition. Some clients couldn't switch to Cloudfare, so we are so excited we finally can manage traffic with the Vercel WAF

  • @rijkvanwel
    @rijkvanwel 6 месяцев назад +20

    I’m going to bookmark that video for when I have trouble falling asleep

  • @paw565
    @paw565 6 месяцев назад +12

    I'm always wondering if next js is stupid or I am too stupid for next js 😂

  • @starnumber_alt
    @starnumber_alt 6 месяцев назад +4

    Turbo getting better? Sign me up

  • @neoish
    @neoish 6 месяцев назад +4

    I understand video sponsorship disclaimers but I don’t always understand when RUclipsrs say I’m not sponsored; this is my honest opinion.
    I’m usually confused because sponsored or not I expect the honest opinion.

    • @adtc
      @adtc 6 месяцев назад

      When a RUclipsr is sponsored, there's a contract that prevents them from saying things that the sponsor doesn't want the public to know. (In short, an NDA is signed.) It doesn't matter if it's the truth or honest opinion. The sponsor will have the right to review and edit the video before it is published.

  • @TheFocusedCoder
    @TheFocusedCoder 5 месяцев назад

    Im so excited for Next.js 18 next month

  • @namastay8417
    @namastay8417 6 месяцев назад +1

    "Ignores your package.json and loads whatever it needs". Great, now I'm going to have nightmares tonight.

  • @MrFalcone1988
    @MrFalcone1988 6 месяцев назад +8

    Solid start is also out :) Solid T3?

  • @seawatts12
    @seawatts12 6 месяцев назад +1

    What are your thoughts on mixing SST (Ion) aka Dax + Team, and Vercel? i.e. deploying AWS SQS, Event Bridge, Step Functions, and OpenNext, etc. This release clearly makes OpenNext outdated.
    My initial reaction is I would want to still use SST for deploying other AWS infrastructure but then use Vercel for my tRPC API + Next web apps.

  • @krishgarg2806
    @krishgarg2806 6 месяцев назад +7

    I kinda left the react/web dev world for 2 years because of studies, and everything has changed.
    Anybody got some points (very brief) I should look at to catch up? I am making a comeback.
    Looking at the replies and researching a bit, turns out nothing much of value has happened (except I guess server components).
    PS: I already knew good to advance react, familiar with backends, and had dwindled with svelte when I left. Only changes I see is we are using drizzle instead of prisma now, and react server components are finally stable (they were unstable and not used when I left).

    • @starnumber_alt
      @starnumber_alt 6 месяцев назад +4

      I think watch theo's 0 to prod video

    • @ciarancurley5482
      @ciarancurley5482 6 месяцев назад +2

      Or the most recent app router video

    • @krishgarg2806
      @krishgarg2806 6 месяцев назад

      @@starnumber_alt thank you, it looks to be a very good starting point.

    • @krishgarg2806
      @krishgarg2806 6 месяцев назад

      @@ciarancurley5482 thank you!

    • @lalithrockz
      @lalithrockz 6 месяцев назад +1

      We do work on need to basis anyway

  • @PiotrGrzegorczyk
    @PiotrGrzegorczyk 6 месяцев назад +2

    12:51, “one of the lubie's first big contributions” - sounds funny when you are a Pole knowing that “lubieowoce” nickname means “I like fruits” 😄

  • @aniketdandekar7314
    @aniketdandekar7314 6 месяцев назад +3

    Finally seeing Theo in a T-Shirt

    • @adtc
      @adtc 6 месяцев назад

      The situation is that bad when Theo has to record an emergency video wearing whatever he woke up in.

  • @mansoormasoudifard8624
    @mansoormasoudifard8624 6 месяцев назад +5

    Come on! I've just begun learning Next 14 and the 15th will be coming soon. 🤦🏻‍♂️ I'm afraid when I learn 15th, the 16th version will come out. 😂

    • @braveltd
      @braveltd Месяц назад

      ur knowledge from nextjs 14 will be usefull in nextjs 15, 16 etc...

  • @rijkvanwel
    @rijkvanwel 6 месяцев назад +4

    8:04 “a walkback of the things that were way to aggressive” - maybe, but I’m still picking up this we know best attitude from that video. Which is concerning

  • @adtc
    @adtc 6 месяцев назад +1

    QUESTION: Does "Request Memoization" still work automatically in Next.js 15 or we have to manually wire that now? (There's absolutely no clarity on this in the RC announcement about caching.)

  • @ryzzlas
    @ryzzlas 6 месяцев назад +5

    6:22 Yes, the problem is, there is no way to inspect what is currently cached for how long. Yes, there are logs, but they only show you info after the cache change already happened so to speak.

    • @rijkvanwel
      @rijkvanwel 6 месяцев назад

      We desperately need cache dev tools

    • @srymisclick
      @srymisclick 6 месяцев назад

      You can create a custom cache handler and tell NextJS to use that. It's something you have to do anyway when self-hosting in a distributed env (and it's a major pain in the butt, too). It's pretty easy to add dev tools to it at that point. There's even an official example that uses Redis as the shared cache, and it comes with devtools - you can see what's in the cache and how revalidating a tag affects this. So you can actually add devtools to the cache, someone just has to make a package for it. Sadly, it would not be universal, but at least it would work in the general case of in-memory cache in single instance dev mode.

  • @pauek
    @pauek 6 месяцев назад

    Great video, Theo! ❤

  • @DmytroZhyvonitko
    @DmytroZhyvonitko 6 месяцев назад +25

    These guys invented a tool to solve not existing problems. And they have released the 15th version to fix a tool that solves not existing problems.

  • @pinoniq
    @pinoniq 6 месяцев назад +2

    Caching the GET is just the HTTP default in a way.

  • @ravisorathiya1756
    @ravisorathiya1756 6 месяцев назад +1

    theo tell everyone thhat next 13 to 15 is going to be BREAKING CHANGE

  • @luizfcavalcanti
    @luizfcavalcanti 6 месяцев назад +1

    18:16 - Did you watch the video on Primeagen's channel? Are we really still debating this "because we know better" attitude from Vercel?

  • @tasin5541
    @tasin5541 6 месяцев назад +3

    Between what remix's vision is for RSC and ease of use of vite, I would recommend to keep using vite for your react projects with csr for now. And when the new updates for remix drops, keep swapping them with RSC gradually.
    NextJs at it's current stage feels too experimental. If you're using pages router, that's fine though.

  • @imakhlaqXD
    @imakhlaqXD 6 месяцев назад +12

    Imagine something working in development and not in production. Its pure evil how do you even think its good idea???

    • @t3dotgg
      @t3dotgg  6 месяцев назад +10

      Bundler behaviors are fundamentally different in dev and prod builds. Tools like Vite use entirely different bundlers in dev (ESBuild) and prod (Rollup), this is somewhat common practice.

    • @victor95pc
      @victor95pc 6 месяцев назад +1

      This is not a problem and not new, even React itself has two different bundle types: one for production(production mode) and the other for development, why do we do it? Because we want to have better React dev tooling while we are creating a new feature, in production we don't need to use that.

  • @rand0mtv660
    @rand0mtv660 6 месяцев назад +4

    13:10 hmm who comes up with these API names? They called it "after". after what exactly? Why can't a function have a descriptive name so that I don't have to go into docs to see what it means. I would like to understand it at a glance immediately when seeing it. Could have named it "runAfterReturn", "runAfterResponse" or something. "after" is just so ambigious and generic. Same with "cache", "dynamic" etc. "cache" also has a problem being named the same as "cache" from React. "waitUntil" is also up there with those. wait until what?
    I feel like they have an obsession coming up with shortest names possible for no reason.

  • @seanzhang3873
    @seanzhang3873 6 месяцев назад

    I really hope that vercel fix the exit animation with the app router. It's been years.

  • @josephmgift
    @josephmgift 6 месяцев назад +2

    Finally, next caching was troubling when I used Sanity, I had to revalidate to solve this.

  • @lronmate
    @lronmate 6 месяцев назад +2

    Turbopack still doesn’t work on my project

  • @qwerty-or1yg
    @qwerty-or1yg 6 месяцев назад

    Okay. so how's the developer experience for any of you right now using next? I've stopped using it a while ago, because I found it a mess with random caching and all the new stuff that's was coming in for the past couple of years. Like I have no idea how most of the stuff works behind the scenes, so I've went back to angular what I've enjoyed doing the most. Any tips what to look into/learn in next? Is it even worth it?

  • @HeinTayZar-fo2xf
    @HeinTayZar-fo2xf 5 месяцев назад

    Last year I started using nextjs in nextjs 13 version, and have to be updated for every minor updates due to nextjs 13 and 14 errors, now we have nextjs 15, lets rewrite again

  • @JLarky
    @JLarky 6 месяцев назад

    5:10 a bit of cursed knowledge, you can also opt out with "use no memo" (this is not a joke)

  • @yiannis_p
    @yiannis_p 6 месяцев назад +3

    Theo you pushed the edge runtime really hard for very good reasons (cold starts) and now you “hate” it!
    I don’t get it. We always knew it was a limited runtime with some strict limitations. Why all of a sudden vercel and you “hate” it ?

    • @rnts08
      @rnts08 6 месяцев назад +3

      Flavor of the month syndrome. Front-end is a cesspool..

  • @fernandobalieiro
    @fernandobalieiro 6 месяцев назад +1

    At this point just use angular, its gr8 now and i dont need to reerite it each semester

  • @mikejohneviota9293
    @mikejohneviota9293 6 месяцев назад +8

    SvelteKit is complete come have a try and escape this drama

    • @mrbjjackson
      @mrbjjackson 6 месяцев назад

      Doesn't Sveltekit still have to integrate Svelte 5 features like runes and stuff? I feel like there are going to be some big changes in the next version. (I'm a Sveltekit fan btw)

    • @naughtiousmaximus7853
      @naughtiousmaximus7853 5 месяцев назад

      ​@@mrbjjackson nowhere near as bad as next bs

  • @NomadicJulien
    @NomadicJulien 6 месяцев назад +1

    When will React 19 get released?

  • @aldanasjuan
    @aldanasjuan 6 месяцев назад

    I saw the thumbnail and I just came to ask if they deleted react from nextjs?

  • @dakdevs
    @dakdevs 6 месяцев назад

    So who is going to make the chrome extension to control Twitch feature flags lmao

  • @rmnilin
    @rmnilin 6 месяцев назад +1

    This video is NOT sponsored, but I bet Theo would like to continue working with Vercel.
    And even if he's not, it would be bizarre to say now, "I'm not being paid, so Next.js is an unmaintainable pile of shit."
    So, why does it matter then?
    Or this is a way to say that the other paid videos were just a way to feed shit into the audience's ears?

  • @vinialves12362
    @vinialves12362 6 месяцев назад +1

    I hate I'm still using NextJS 12 patterns at my job :(
    We're fucking spinning up an EC2 to run NextJS, I feel miserable

  • @rhino_interactive
    @rhino_interactive 6 месяцев назад

    how can you change the feature flags? Because to change it you need to post and the server won't allow you to modify the db

  • @youssefcha-kw2ox
    @youssefcha-kw2ox 6 месяцев назад +2

    i just started learning next js 14😢

    • @tigana
      @tigana 5 месяцев назад

      Same😭 Lord have mercy lol

  • @ari.joel.m
    @ari.joel.m 6 месяцев назад +1

    Dawm Next has gotten complicated but exciting at the same time

  • @codelivewithme
    @codelivewithme 6 месяцев назад +15

    Fix awful caching system vercel

    • @t3dotgg
      @t3dotgg  6 месяцев назад +7

      Keep watching, you should be excited :)

  • @GodswillEzeala
    @GodswillEzeala 6 месяцев назад

    What browser do you use?

  • @kasper369
    @kasper369 6 месяцев назад

    Very hyped, exciting times, less gu

  • @rapzid3536
    @rapzid3536 6 месяцев назад

    Ohhhh, the feature flag thing was an advertisement.

  • @coder_one
    @coder_one 6 месяцев назад

    Vercel is now like a video game console producer with the rights to an exclusive title: React.js from the Meta inc.
    And that's disgustingly sad!

  • @AdamSowinski
    @AdamSowinski 6 месяцев назад

    How does it compare to SvelteKit?

  • @DelicueMusic
    @DelicueMusic 6 месяцев назад

    I really thought that Pages Router would eventually be phased out tbh.

    • @thomas-sinkala
      @thomas-sinkala 6 месяцев назад

      I doubt that. The app router has so many inadequacies by its very nature that pages router will still relevant.

  • @northloo
    @northloo 6 месяцев назад +4

    Dude instead of reinventing concepts every 4 months and leaving 3 paragraphs in the documentation and leave for vacation for the next 8 months can we have proper ways to work with client and server components and functions together sithout having to split yourself in 12?? Like wtf are they even working on? How are we at next15 already but i still cant use a server action in a form using a simple way/method. I like next its what i decided to move foward with but man its management makes me mad.

  • @WilliamWelsh
    @WilliamWelsh 6 месяцев назад

    theo please where did u get that shirt

  • @Me-vc4sf
    @Me-vc4sf 6 месяцев назад

    Are they experienced enough?

  • @EverydayBeing-de1qu
    @EverydayBeing-de1qu 6 месяцев назад

    I like changes but if these changes mean I need to learn a complete different way of thinking such as app v pages router then I'm leaving the train.

  • @masaratech
    @masaratech 6 месяцев назад +1

    I want to build a framework and name it fucknext

  • @grzesieksgs
    @grzesieksgs 6 месяцев назад

    lubieowoce - "I like fruits"

  • @thdxr
    @thdxr 6 месяцев назад +5

    bro

  • @user-jt7wb3zc1m
    @user-jt7wb3zc1m 6 месяцев назад

    *Ship just happened.* 🗿

  • @SazzadAhmedTuhin
    @SazzadAhmedTuhin 6 месяцев назад

    Can you react to the new Hasura v3? I think they fixed a lot of issues and it's great now

    • @ivan.jeremic
      @ivan.jeremic 6 месяцев назад

      I think you will be more happy just using WordPress as your backend. LoL

  • @Oxygen.O2
    @Oxygen.O2 6 месяцев назад +4

    Next 16 going out next week, can't wait. I'm trying to convince my grandpa's team to switch front end to NextJS, but this make it more and more seem like a toy than an usable dev environment, can't they just do a LTS version like Ubuntu does? Because it's ridiculous to keep up at this rate. I've a client project that I started with 13.4 a few months ago and it is already out-of-date, by 2 major version?! I know and understand that the update should be fairly easy, but nonetheless makes it seems like you have to be aware of what they do every single week, I try to build shit, please get out of my way! It was the first promise of Next and it's not true anymore.

    • @victor95pc
      @victor95pc 6 месяцев назад

      This is crazy, I recommend you hire someone else to do updates haha, so you can deploy new features, but for me, Next.js seems like a toy framework, but you know people say if you don't use it you will create your own framework, I did my own "framework" multiple times back in the days with React, you know in order to update it, it was super simple, few libs = less update, like why it would be so hard to add React + libraries you need, instead of adding an entire framework.

    • @armanamini1450
      @armanamini1450 5 месяцев назад

      Why did you convince them to use next?

  • @greendsnow
    @greendsnow 6 месяцев назад

    No more "app" router. Use zapp router. Use laravel actions, ssr? No, use ssm,mmr,ssg,abc,lpg.

  • @denilsoncosta9837
    @denilsoncosta9837 6 месяцев назад

    I tried PPR not ready yet!

  • @Chihab-kp2kx
    @Chihab-kp2kx 6 месяцев назад

    turbo causes upload thing of all things to fail

  • @TimRottmann
    @TimRottmann 6 месяцев назад

    Uhh I dig "after" :)

  • @blazi_0
    @blazi_0 6 месяцев назад +2

    Man i hate this, they change next every few months and its always breaking changes. Wtf man

  • @nakitai-wj1ki
    @nakitai-wj1ki 6 месяцев назад

    is the new router (app folder) still beta?

    • @srymisclick
      @srymisclick 6 месяцев назад

      According to Vercel it's not, it's stable, but sure enough some features (you could say, "advanced features") don't work.

    • @nakitai-wj1ki
      @nakitai-wj1ki 6 месяцев назад

      @@srymisclick oh great thank you

  • @simpingsyndrome
    @simpingsyndrome 6 месяцев назад +1

    I'm dying 💀

  • @benheidemann3836
    @benheidemann3836 6 месяцев назад +2

    Say feature flags are “insecure” is a reach.

  • @Me-vc4sf
    @Me-vc4sf 6 месяцев назад

    Evan you can solo them

  • @danamka
    @danamka 6 месяцев назад

    It did take 5 seconds to understand what "breakdown" means here

  • @neetishraj
    @neetishraj 6 месяцев назад +2

    😅Gotta stop with this "peace nerds", man! we love u no disrespect.

  • @nyumat
    @nyumat 6 месяцев назад

    Huge.

  • @razdingz
    @razdingz 6 месяцев назад

    I love woman juices , also ur face is quite funny bro :)

  • @JoaoPedro-wb6tb
    @JoaoPedro-wb6tb 6 месяцев назад

    What is that web browser??

  • @carlhandy
    @carlhandy 6 месяцев назад

    So they finally caught up with Nuxt… nice

  • @naughtiousmaximus7853
    @naughtiousmaximus7853 6 месяцев назад +4

    Laravel > Next

    • @ilahazs
      @ilahazs 6 месяцев назад

      But not SPA, it's awful if using livewire for SPA

    • @naughtiousmaximus7853
      @naughtiousmaximus7853 6 месяцев назад

      @@ilahazs oh yes definitely, I agree 100%

    • @SuperSniffen
      @SuperSniffen 6 месяцев назад

      Next just copied laravel let's be honest

    • @rand0mtv660
      @rand0mtv660 6 месяцев назад

      Different frameworks for different use cases. I use Next.js mostly for frontend and don't care about most of its backend "capabilities" except server side rendering sometimes.

    • @tanzimibthesam5861
      @tanzimibthesam5861 6 месяцев назад

      ​@@ilahazs from V3 it has changed and improved a lot and Filament is something most devs can dream for

  • @vatsalrajchauhan2983
    @vatsalrajchauhan2983 6 месяцев назад

    Cool t shirt

  • @Sammysapphira
    @Sammysapphira 6 месяцев назад

    Wow

  • @LifeSurf123
    @LifeSurf123 6 месяцев назад

    Hydration errors :O

  • @AsadSiddiquee
    @AsadSiddiquee 5 месяцев назад

    I left at next 13. :)

  • @hakuna_matata_hakuna
    @hakuna_matata_hakuna 6 месяцев назад

    wink wink

  • @danielmajer1648
    @danielmajer1648 6 месяцев назад

    I haven't even watched it yet. Still having the ads, but what the heck... Next 14 hasn't lasted long

    • @t3dotgg
      @t3dotgg  6 месяцев назад +1

      14 had no new APIs, and 15's are mostly experimental. Almost any app built on 12 or higher should be able to upgrade just by bumping versions :)

    • @danielmajer1648
      @danielmajer1648 6 месяцев назад

      @@t3dotgg I ain't complaining. Until I don't have to go back to Symfony or Django I am a happy monkey thanks to Next.

  • @lronmate
    @lronmate 6 месяцев назад

    caching is hard

  • @kar2k
    @kar2k 6 месяцев назад

    At this point lavaral, regular react and sveltekit looking sweet. We are sick of next.js

  • @sbogdaniuk
    @sbogdaniuk 6 месяцев назад +2

    Don't do dark content.
    It looks like me doing this podcast, as I see myself in the monitor

    • @t3dotgg
      @t3dotgg  6 месяцев назад +3

      Everyone complained about me charging for dark mode, now you're complaining I gave it out for free? smh

    • @SnowDaemon
      @SnowDaemon 6 месяцев назад

      @@t3dotgg good point lol

  • @adimail2404
    @adimail2404 6 месяцев назад

    Caching is hard 😐

  • @guppy13
    @guppy13 6 месяцев назад +1

    They couldn’t get it right the first 14 times? Joke framework

  • @gmoniava
    @gmoniava 5 месяцев назад

    Vercel could not even create decent docs for nextjs

  • @fifty6737
    @fifty6737 6 месяцев назад +1

    Next js has become one of the shittiest frameworks out there
    From the messy App Router, Weird RSC integration, cache bullshit, inability to be deployed away from vercel without using a fucking docker container, the horrendous performance of webpack
    Next.js experience is now a painful one
    Twice now i found myself switching mid project from next to remix or pure SPA React

    • @victor95pc
      @victor95pc 6 месяцев назад

      SPA React was always simpler... Sent the initial state from the server side to the client and render it, simple as that... No need to use anything you don't feel you need, you can only use React.

  • @EagerEggplant
    @EagerEggplant 6 месяцев назад +4

    The app router was a mistake

    • @kkebo
      @kkebo 6 месяцев назад +1

      why?

    • @renovantm125
      @renovantm125 6 месяцев назад

      @@kkebobecause he says so 🤣

  • @1OJosh
    @1OJosh 6 месяцев назад

    Use remix, you won’t regret it