Why I don't use React-Query and tRPC in Next.js

Поділитися
Вставка
  • Опубліковано 5 тра 2024
  • Hi, I'm Wesley. I'm a brand ambassador for Kinde.
    👉 NEW React & Next.js Course: bytegrad.com/courses/professi...
    👉 Professional JavaScript Course: bytegrad.com/courses/professi...
    👉 Professional CSS Course: bytegrad.com/courses/professi...
    👉 Discord: all my courses have a private Discord where I actively participate
    🔔 Email newsletter (BIG update soon): email.bytegrad.com
    ⏱️ Timestamps:
    0:00 Intro
    0:20 Data fetching before React-Query
    2:20 Data fetching with React-Query
    4:30 Data fetching without React-Query (Next.js)
    8:55 GET / Query before tRPC
    9:45 GET / Query with tRPC
    10:52 GET / Query without tRPC (Next.js)
    11:40 POST / Mutation before tRPC
    12:25 POST / Mutation with tRPC
    13:08 POST / Mutation without tRPC (Server Actions)
    18:33 Overview
    #webdevelopment #programming #coding #reactjs #nextjs

КОМЕНТАРІ • 166

  • @ByteGrad
    @ByteGrad  2 місяці тому +10

    My Professional React & Next.js course is out now! Find it here: bytegrad.com/courses/professional-react-nextjs -- this is the #1 resource to master the latest React & Next.js, my absolute best work.

    • @brancode404
      @brancode404 2 місяці тому

      Waiting for the video overview bro and after that I'll purchase for sure.

  • @ahmetdeniz3201
    @ahmetdeniz3201 2 місяці тому +89

    i'd prefer react-query + trpc or react-query+server-actions(yes it's possible). I love react query. because it's reduces state management complexity and usage of useEffect , also caching and handling loading states are so easy.

    • @samuelwittlinger7790
      @samuelwittlinger7790 2 місяці тому +7

      If you write proper next13+ code, you don't need any state management, or useEffects in 95% of cases. Just manage state with urls. Also next does caching really well and on the server side, which is usually preferable.

    • @bozzistef
      @bozzistef 2 місяці тому +4

      @@samuelwittlinger7790 what do you mean by handling the state with urls?

    • @bozzistef
      @bozzistef 2 місяці тому

      @@samuelwittlinger7790 I just saw a video about it, forget it . I've used that approach before but for searching - filtering

    • @IlllIlIlllIIIllIl
      @IlllIlIlllIIIllIl 2 місяці тому

      ​@@bozzistef querystring

    • @sohhamm
      @sohhamm 2 місяці тому +2

      try to use URLs for state management, this problem will be solved

  • @ts8960
    @ts8960 2 місяці тому +4

    surprised its not clickbait and actually teaching. thanks for the info

  • @irfantayyib
    @irfantayyib 2 місяці тому +26

    Hey, you are one of the few youtubers I have subscribed and I rarely comment on videos, I just want to say that please keep uploading videos and do not be discouraged in any way... Your videos are relevant and easy to understand. Thanks!

    • @ByteGrad
      @ByteGrad  2 місяці тому +4

      Thanks, appreciate it!

    • @nathanpotter1334
      @nathanpotter1334 2 місяці тому +2

      +1 - You have an amazing way of explaining things. Got me started with full-stack next projects

  • @brancode404
    @brancode404 2 місяці тому +1

    What a great video bro. Making things clear and understanable

  • @adipati27ma
    @adipati27ma 2 місяці тому +1

    Great content!! new insight achieved, thank you !

  • @chriss87878
    @chriss87878 2 місяці тому +1

    High quality video, thanks!

  • @nobodysaysmynameright
    @nobodysaysmynameright 2 місяці тому +15

    Good video. I still think it depends on the use case. Let's say you're building a sports betting site, and your page needs to be live fed (normally through polling). ReactQuery (or traditional client side fetching) is your best option. RQ also refetches when you go away and come back to the site which is harder to do with Nextjs as you physically need to revalidate the route. So I think this is a great solution for when you have content that may or may not change and you don't want to make it strictly static but you'll no doubt encounter scenarios where tradicional client side requests are of good use. Regardless, well explained, was very informative!

  • @backbenchercoding1388
    @backbenchercoding1388 2 місяці тому +1

    really appreciate these indepth videos

  • @VaurionX
    @VaurionX Місяць тому +1

    You describe everything so clearly and include caveats as well, which is so helpful. I am new to NextJS and am seeing the benefits of Server Components. Thanks for the great video.

    • @ByteGrad
      @ByteGrad  Місяць тому

      Glad it was helpful!

  • @TommyAMV
    @TommyAMV 2 місяці тому +9

    Very good video, keep up the great work!
    I faced this dilemma when starting my latest project, in which I intended to use RSCs. I was constantly going back and forth between Server Actions and tRPC. Ultimately I stuck with tRPC and I think there are still valid reasons to use it:
    1. Built-in validation with Zod
    2. Simple integration with React-Hook-Form
    3. Using it in Next 14 pretty much disables full route caching of UI and of API requests by default, which is exactly how Next should behave in my opinion. That aggressive level of caching should be opt-in
    4. You import one object and get access to all route definitions
    5. We still get optional caching in client components
    6. You can expose your API to other clients.
    Of course you can achieve all of those things with Server Components too. Actually they even provide even more, as you can cache full API routes, which may be useful. However, it seemed like implementing them on the level that I require would simply be inconvenient, at least in their current state.
    If some wrapper for Zod comes in with support for typed FormData, then I think it’ll be the good time to switch

    • @MrManafon
      @MrManafon 2 місяці тому +1

      A very good summary. I'd add to that - server actions must always be functions and cannot be grouped or namespaced, meaning you can't really organize them properly and have to resort to weird naming patterns to avoid naming conflicts.

  • @ayushshende4290
    @ayushshende4290 2 місяці тому +4

    A tutorial on how to apply correct caching in a nextjs project would be very helpful. I struggle with that a lot which page should be static and which one should be dynamic, when to use the no_store() in queries and when to not use it, etc. Your videos are really helpful, Thanks!

  • @lukem829
    @lukem829 21 день тому +1

    the best nextjs vids! thanks so much for this man

  • @sanjoyrakshit842
    @sanjoyrakshit842 2 місяці тому +1

    Really very useful information and good guidance love from India ❤❤

  • @EvaporatedBoy
    @EvaporatedBoy 2 місяці тому +1

    Thanks for the insights. In my experience, like you said, there’re always edge cases that require trpc, but the moment I implement a trpc call to fetch the same object, I have to duplicate the code from my server component’s fetch call (input validation, prisma call, etc). Also having both server calls and trpc makes things hard to find, so I always end up implementing everything in trpc.

  • @svict4
    @svict4 2 місяці тому +6

    really cool! nextjs fetching is just missing a devtools equivalent for easy debugging

  • @hanserlabber4164
    @hanserlabber4164 2 місяці тому +1

    "So good! Compact and clear. Throughout the entire video, I was thinking, 'Hmm... Yeah, that's all true, but there's a big downside you didn't talk about.' And then, in the last minute, you also clarified on this 😂👍 (I'm talking about the usability in external apps). Thank you for the nice video! Until it's possible to use the full power of Next.js built-in solutions in RN and so on, I completely agree with you; there is no more reason to use React Query or TRPC."

  • @treyrader
    @treyrader 2 місяці тому +1

    amazing! Thanks :)

  • @jowadev
    @jowadev 2 місяці тому +1

    Great video !

  • @mohamedazizhaddad5052
    @mohamedazizhaddad5052 2 місяці тому +1

    Thank you so much for your greate content ♥ I have one question please, what do you think about using GraphQl instead of prisma ORM ?

  • @youneshenni5417
    @youneshenni5417 2 місяці тому +4

    Great tutorial! However, it would be helpful if you could also cover how to invalidate the cache in Next.js. In software development, it's crucial to remember that overfetching is often preferable to underfetching for better application performance and user experience. Looking forward to more insightful content from you!

    • @nobodysaysmynameright
      @nobodysaysmynameright 2 місяці тому

      That's not always true, it really depends on where your audience is. If you're serving African countries data tends to be very expensive so other mechanisms might be of use

    • @samuelwittlinger7790
      @samuelwittlinger7790 2 місяці тому

      They way to do it is creating a custom nextjs api endpoint and importing revalidateTag from next/cache. Once you figure it out the nextjs cache is great.

  • @ccopol
    @ccopol 11 днів тому +1

    I've just bought your courses thanks to this video. This video is very informative.

  • @tsooooooo
    @tsooooooo 17 днів тому +1

    I came in as a skeptic but you convinced me to give it a try

  • @user-xs4th5rm6w
    @user-xs4th5rm6w 2 місяці тому +2

    the goal using trpc instead server actions is the option to set private and public routes, for example in t3(theo stack) nextauth is integrated greatly and you can use this trpc mutation with loged users

    • @juancarlostremolss3158
      @juancarlostremolss3158 Місяць тому +1

      You can even say it adds an additional layer of security within your app. Most of the time you will not work with devs specialized on Next JS and by providing an extra layer like TRPC, on top of the current benefits, you protect your application from accidentally calling server only functions in the client. TRPC is not mandatory, you can always add a parser between your functions, or follow the NextJS best practices, but a well set up TRPC project actually enforces the good practices

  • @ontanicolae1794
    @ontanicolae1794 2 місяці тому +1

    react query is also cached, along with the paths. And on client you can have dynamic data, optimistic updates, etc so in a web app you'd still want to use it. On a site for sure not

  • @buzz1ebee
    @buzz1ebee 2 місяці тому +18

    9:32 we have a separate backend and I set up code generation that generates fetch functions with the correct types from the same openapi spec that generates the backend routes and types. It's quite a nice way to work.
    I'm not a huge fan of having nextjs do things like interact with the db etc, that's much easier to structure and test in a dedicated backend (we use nestjs).

    • @essawy897
      @essawy897 2 місяці тому +3

      we do the exact same thing!

    • @Disorrder
      @Disorrder 2 місяці тому

      I think you can test both trpc and next backend easily as well as separate REST API

    • @buzz1ebee
      @buzz1ebee 2 місяці тому +1

      @@Disorrder I'm sure they are both testable yeah. It's a lot cleaner IMO to have the backend as a separate REST API though. It's a lot easier to hire for and to get good quality output when it's a known technology and pattern. We can have our backend guys move over to this project and carry on working with exactly the same patterns as they would use on our angular frontend or spa react apps.

    • @user-lk3iq2bv7t
      @user-lk3iq2bv7t Місяць тому

      @@buzz1ebee do you use next.js app router? it should be the same thing surely?

    • @buzz1ebee
      @buzz1ebee Місяць тому

      @@user-lk3iq2bv7t if you mean it should be the same thing as a dedicated backend, in my opinion it really isn't for larger more complex projects.
      App router is great, and server actions are awesome, but I prefer to use them to complement dedicated backend(s). For small apps where I just wanted to do a little crud or hit some external third party APIs I wouldn't also spin up my own backend and would just rely on app router though.
      Many things have tried to claim you can do away with dedicated backends (firebase, lambda, etc) for large projects, but they haven't done it yet.

  • @parkerrex
    @parkerrex 2 місяці тому +1

    fantastic

  • @hooyah
    @hooyah Місяць тому +1

    thanks. now i know server action. i never used it before.

  • @abdushakoor0099
    @abdushakoor0099 Місяць тому +1

    quality content

  • @MuhdHanish
    @MuhdHanish 2 місяці тому +1

    give a tutorial video of this project, i really like the user interface of it and would like to explore how you build this application each component part looking very neat.

  • @guilhermenascimento4067
    @guilhermenascimento4067 2 місяці тому +1

    The t3 stack make all this perfect.

    • @alfieqashwa5257
      @alfieqashwa5257 2 місяці тому

      I agree. tRPC+react-query can live on RSC. Only when to invalidate is using "router.refresh()", not "await utils.dotdotdot.invalidate()"

  • @venicebeachsurfer
    @venicebeachsurfer 2 місяці тому +1

    Do you mean V14 of next js and app router? I find the need for react-query using v12, quite a bit.

  • @dejoma.
    @dejoma. 2 місяці тому +1

    How do you await fetch in a client component? Can you just make an async client component?

  • @NeoCoding
    @NeoCoding 2 місяці тому +1

    BTW what to pass to a Suspense key if it should get an array or object? To check if it has been changed?

  • @tiagoc9754
    @tiagoc9754 2 місяці тому +2

    What's your opinion of NextJS and Graphql? As now we have server components, server functions, routes, and the BE and FE are working closely, do you believe it's still makes sense the extra setups Graphql requires to get it's advantages like api documentation?

    • @joelv4495
      @joelv4495 2 місяці тому +1

      I've been toying with a similar setup, and here's my $.02: Lots of overhead when compared to a server action. The main benefit of using a separate backend is that it's not coupled so tightly to the next app. That is useful if your project ever needs a different consumer, either a different app, public API, or Mobile app.

    • @tw04
      @tw04 2 місяці тому

      I believe graphql is not needed now. Server got its role back.

  • @etiennerobert6918
    @etiennerobert6918 Місяць тому +1

    Awesome content

  • @roberth8737
    @roberth8737 2 місяці тому +5

    Have you checked out next safe action package - would make a great video.

    • @ByteGrad
      @ByteGrad  2 місяці тому +3

      Yeah looks great, surprised it hasn't become more popular yet

  • @Aji0t
    @Aji0t 2 місяці тому +1

    Hey is the code available for testing?
    All 3 approaches?

  • @baoduy
    @baoduy 2 місяці тому +5

    How could you revalidate the NextJs cache? Automatic caching is good but we should have ability to manage the cache life time also

    • @FaAbYorker
      @FaAbYorker 2 місяці тому +2

      Next provides a way to revalidate. If you're using fetch() there's an additional attribute `next` inside where you can add {revalidate: time}
      Eg: fetch(....,
      next: {
      revalidate: 10 // revalidates in 10secs
      }
      )

  • @GeekOverdose
    @GeekOverdose 2 місяці тому +3

    Ok but how do you disable caching with nextjs? What if I DONT want to cache things. Maybe its something that updates a lot

  • @ZainRamzan-pt8cm
    @ZainRamzan-pt8cm 2 місяці тому

    When working on a very large project, React Query is still necessary because in large applications, data fetching isn't typically handled directly within components. Instead, server actions are utilized. Additionally, Next.js does not cache API calls made within server actions, at least not as far as I know. If I'm mistaken, please feel free to correct me

  • @dellryuzi
    @dellryuzi Місяць тому

    if you refresh the page, it will request again right?
    then the concept would be same like using state management like zustand then? just need to avoid useless render page and store data temporarily on zustand?

  • @Tony-dg1hm
    @Tony-dg1hm 2 місяці тому +1

    🔥🔥🔥

  • @Anto-mi5pn
    @Anto-mi5pn 2 місяці тому +1

    Can someone tell me how server actions work? A HTTP request is still made to the backend, right?

  • @aryan.prince
    @aryan.prince 2 місяці тому +3

    18:08 You mention how we can use clients outside of Next.js with tRPC. Could you still use tRPC endpoints on a Swift app for example though? I mean if I used Next.js API routes then I can definitely use that but I'm not sure about using tRPC outside the same project.
    I believe this is possible within a monorepo/Turborepo if you have a Next.js app with tRPC endpoints/procedures, and then a React Native app could consume those tRPC endpoints/procedures.

    • @kabriid
      @kabriid 2 місяці тому

      There is a lib called trpc-openapi which creates REST endpoints for you trpc procedures

    • @Lucas-gt8en
      @Lucas-gt8en 2 місяці тому +3

      You can use the tRPC API endpoints just like you would use any other API routes. However tRPC has its own conventions (instead of RESTful and/or OpenAPI conventions) on how to call functions and what format is returned.
      I’d probably prefer either using React Native if that’s workable in your context or abstract out the data retrieval logic from the API logic so you can create a dedicated RESTful API for mobile with API routes. For the first option I’d look into T3 Turbo as a (very good) starting point.
      You could also look into tRPC OpenAPI or perhaps there’s a codegen plugin for Swift. I’d shy away from the first option because the tRPC conventions are still there and it is therefore not very readable for non-tRPC users. Also in my experience the user app will deviate from the web API sooner rather than later so building out a separate API while being able to reuse a large parts of the shared data retrieval and business logic feels like a worthwhile investment even when it might not directly pay for itself in the short term.

    • @Disorrder
      @Disorrder 2 місяці тому +1

      tRPC is the same HTTP backend, there is no problem to use it from any client that can parse http and json. You just need to understand request and response formats and have a library for that. But it works seamlessly on any typescript environments. If you're using another language on client, you'd prolly better to use REST or graphQL API

  • @joseflinha
    @joseflinha 2 місяці тому

    Will there be another video? ... Why use SvelteKit? :D

  • @MrNitrocification
    @MrNitrocification 2 місяці тому

    how would you combine nextjs with a .net backend api?

  • @grahampcharles
    @grahampcharles 2 місяці тому

    This is just if you’re using server functions, yes? So if I’m still on Nextjs 13, I should stick with React Query?

  • @benjamingoller6267
    @benjamingoller6267 Місяць тому +1

    I love the idea of server actions, especially to make database requests etc. But if I have a database with personal data, I need to protect the server action from being called.
    That is why I am frustrated at the moment. I am using server actions for such database queries. However, whatever I do, I cannot protect the server function from being accessed from anyone from the client side. The function is in a folder utils alongside app. The can use it from client side but so can anyone! I have looked everywhere, but I cannot seem to find how to handle that…

  • @brianmcbride1631
    @brianmcbride1631 2 місяці тому +1

    The downsides you listed are the same reasons we moved away from this format in PHP, Rails, and so many others.
    Server Side Actions are acceptable if you are only ever going to use your data in that one web app.
    But why not spend more time creating an API layer that will unlock future growth? Separation of concerns and all that?
    What happened to mobile-first design principles? This isn't just UI media breakpoints. It is designing sites that can work well with limited or even no connection.
    In this example, a job site, I sure would want to be able to browse and save jobs on my phone.

  • @Jorschm
    @Jorschm Місяць тому

    Is there another way for handling fetching on the server side without using fetch? as its syntax is well, not my favorite.

  • @user-sc2dc4ud7b
    @user-sc2dc4ud7b 2 місяці тому

    You mentioned that server actions are like POST but can't server actions do a GET too?

  • @henriquematias1986
    @henriquematias1986 2 місяці тому +1

    Kinda reminds me of what Meteor was! But more up to date/standards

  • @CoryTheSimmons
    @CoryTheSimmons 2 місяці тому +10

    Good video. Sucks Vercel hates React Native so much.

    • @gaiusjcaesar09
      @gaiusjcaesar09 2 місяці тому +4

      Expo brother. Expo. It's not so bad nowadays.

    • @CoryTheSimmons
      @CoryTheSimmons 2 місяці тому

      @@gaiusjcaesar09 I used Expo. It's okay, but it's crazy Vercel just pretends mobile doesn't exist and everyone goes along with it as if mobile isn't the vast majority of users.

  • @rdec5448
    @rdec5448 2 місяці тому +1

    Hope to see a video in my recommended named "Why I don't use React anymore" someday :)

  • @noahginsburg6140
    @noahginsburg6140 2 місяці тому +1

    Within a server component, what do you use when calling anything other than fetch to an http endpoint? Does the server side data-cache only work for fetch calls? What tool or method would you use to make a direct sql call to get the information you need for a server component?

    • @EduarteBDO
      @EduarteBDO 2 місяці тому +1

      What the server caches is the jsx component that it's returned. Not the fetch call, it caches the data that is used in the jsx boiler plate. So you can use any orm, not just prisma. There are others orm that allow direct sql call.

    • @vahankaramyan7561
      @vahankaramyan7561 2 місяці тому +1

      @@EduarteBDO as I know Nextjs has a data cache that stores fetched data, correct me if I'm wront

    • @EduarteBDO
      @EduarteBDO 2 місяці тому

      @@vahankaramyan7561 yes it has. but it has both, nextjs have different types of caching mechanism and it'll try to use the best mechanism for the specific situation.

    • @buzz1ebee
      @buzz1ebee 2 місяці тому

      ​@@vahankaramyan7561yeah it caches both components and data, it also caches routes on the front-end. Can cause headaches invalidating the cache but once you get it it's pretty nice.
      Any fetch requests will be cached and you can invalidate them via tags so any dependent components won't hit the cache.

  • @amansarma417
    @amansarma417 2 місяці тому

    After watching this i appreciate how good laravel is now nextjs is following that methodology

  • @franciscolagorio6757
    @franciscolagorio6757 2 місяці тому

    I don't understand why using type unknown is better than specifying the typeam I because in the server action, you verify the schema and the data type. What I am not seeing well at this?

  • @Omarwaqar-pt7wf
    @Omarwaqar-pt7wf 2 місяці тому

    What about next safe action with server actions

  • @amanrubey
    @amanrubey 2 місяці тому

    Comment unrelated.
    I love this comment so much which I ready earlier in some other video. Someone made this comment which was going in my mind too, he said "I believe 100% whatever this guy says" and I cannot agree enough 🤣
    I believe in Wesley supremacy 🛐

  • @Foused87
    @Foused87 2 місяці тому

    How to convert react to pdf?

  • @ankitpradhan4183
    @ankitpradhan4183 2 місяці тому

    i got into problem with just using server components and server actions, everything was fine until I had to do error handling. instead of just fetching an error amd showing them, I'd probably have to wrap the components with error boundary and lose the custom error handling mechanism for each components or page withiut having to spam error boundary on every componebets. Or am I doing it wrong ?
    Another problem I got was having an onClick handler in a component and I cannot make it a server component anymore. I could try with URL modifications but that was not a page and was a component, so soon I had to use useEffect or react query alternatives anyway. And its not the issue, the issue is now trying to mimick similar loading and error state as you did with error boundaries.
    It just became a headache to me.
    This example is probably an easier ones and works best I agree, but when you go one level complex and complex again, it just starts to be a headache imo.
    Then on top of that try modals with app router and error handling or routing and data cache invalidations with server actions (invalidating a client component fetchers)
    does anyone have any experience or bootstrap modal of these on how to model these and create the best structure to handle them?

  • @sayedulkrm
    @sayedulkrm 2 місяці тому

    I love redux-toolkit ❤

  • @Infinite_Mainak
    @Infinite_Mainak 2 місяці тому

    At 11:30 what about client component? There I have to use trpc?

    • @filipfiser1045
      @filipfiser1045 2 місяці тому +1

      Either pass the data as props to the client component, or you can use tanstack query with server actions (queryFn: () => serverAction()) for example.

    • @Infinite_Mainak
      @Infinite_Mainak 2 місяці тому

      @@filipfiser1045 thanks bro I will try it out

  • @abdelhameedhamdy
    @abdelhameedhamdy 2 місяці тому

    I see that react query is useful in react native projects.

  • @Santiego
    @Santiego 2 місяці тому

    Do you guys even measure your crud response times in dev tools? I have implemented todo using react server actions in 5 different ways and I can't get pass 350 ms latency on a turbo simple todo, ever, meanwhile with tanstack query im below 100ms....

  • @godofwar8262
    @godofwar8262 2 місяці тому

    What is trcp I don't know about it

  • @EnriqueDominguezProfile
    @EnriqueDominguezProfile 2 місяці тому

    Raact Query is useful beyonf fetching data. It's allbout about asynchronous operations on the State.

  • @kasparsiricenko2240
    @kasparsiricenko2240 2 місяці тому +1

    so for simple apps next js is good. but when app is growing nextjs caching is not that good enough and you have scalling issues with amount of API growing.. No nextjs in my life for sure

  • @Mirislomovmirjalol
    @Mirislomovmirjalol 2 місяці тому +1

    Okay, what if i have very huge amount of data? Is ISR still can be solution? I think next js caching good for only static data, good for landing page data but not for dashboard apps where you have more than 2000 page data. It becomes a joke to make 2000 pages on build time. So, unfortunately, we still must use client side caching like react query or redux

    • @RaZziaN1
      @RaZziaN1 2 місяці тому

      If you have a lot of data, using client side caching is ok, dropping next.js is even better idea - because it will make stuff worse.

    • @ooogabooga5111
      @ooogabooga5111 2 місяці тому

      you can actually generate 2000 pages with ease. But yeah I agree, its mentioned in react-query, it benifits the most when you want to fetch alot of client/user sided queries. In the end developers gets the option to balence when we want to render on server/client.

  • @AmodeusR
    @AmodeusR Місяць тому

    I wouldn't say caching is the sole reason someone would use React-Query for. It also abstracts common necessary variables like isLoading and Error, which needing to handle that in comparison to a hook that already does that for you with the bonus that it has caching, I don't see a reason why someone would not use it just because NextJS has caching. Unless it would conflict with NextJS caching, but would it?

  • @richardflosi
    @richardflosi 2 місяці тому

    Why not fix the cache?

  • @zoki5388
    @zoki5388 2 місяці тому

    It would be nice if react router loaders were compared too

  • @imkir4n
    @imkir4n 2 місяці тому

    Alright plz give a reply for this scenario. You are using custom server and you need to validate the user to fetch api on sc by attaching token on header for authorization. How do you validate user in client and server components. Don't want to use any pkg like nextauth.

    • @filipfiser1045
      @filipfiser1045 2 місяці тому

      You can get request headers using function "headers" or cookies from next/headers in server components, then make a call to the server.

    • @imkir4n
      @imkir4n 2 місяці тому

      @@filipfiser1045 if it's the case of token storing in localstorage how to do that?

    • @naylord5
      @naylord5 2 місяці тому

      you can try with axios interceptors mate, maybe you like it

    • @imkir4n
      @imkir4n 2 місяці тому +1

      @@naylord5 yup thats how im going

  • @kuldeepsaini460
    @kuldeepsaini460 2 місяці тому

    I wanna ask can I make button with formaction when user click it will rediect them to another page?

    • @rajraman987
      @rajraman987 2 місяці тому

      import router from next/navigation , then use router.push(" the url you wnat to go to
      ")

    • @filipfiser1045
      @filipfiser1045 2 місяці тому

      you can use redirect function from next/navigation. works for client and server components as well as for server actions

    • @kuldeepsaini460
      @kuldeepsaini460 2 місяці тому

      @@rajraman987 router only works on client side

    • @kuldeepsaini460
      @kuldeepsaini460 2 місяці тому

      @@filipfiser1045 But One time I used redirect in form action but it directly redirect me without clicking on button. Can you provided me a source please. Thanks in advance 😅

  • @rugucloud
    @rugucloud 2 місяці тому +1

    Honestly, it's like everyone's ditching Next.js for Vite these days. Next.js kinda tries to be a jack-of-all-trades, bundling everything together-it's like they went overboard with the whole abstraction thing.

  • @mkaufmandev
    @mkaufmandev Місяць тому

    What is a React “feat or feet” app? Mentioned at 4:30 please. Thanks

  • @kuldeepsaini460
    @kuldeepsaini460 2 місяці тому

    Can anyone tell I am using a state management tool like redux and I have a token store in my local storage. Can I get my user details on server side in any way and then can update my states

    • @buzz1ebee
      @buzz1ebee 2 місяці тому

      The server side won't be able to access the client side local storage I don't think, so you'll likely need to either pass whatever data you need from local storage back to next, or better implement some storage that the server can access also (i.e. cookies). If you're only interested in Auth state and are using oauth then next-auth might be ok, I implemented http only cookies myself and just had any client components make a call to get any locally required info.

  • @CookerSingh
    @CookerSingh 2 місяці тому +2

    No way, Vercel team is completely vendor lockin customers through sponsoring such developers to use more and more next js dependencies.
    Its a game that everyone western software company plays.

  • @paw565
    @paw565 Місяць тому +1

    Honestly I hate fetch, can you make some video about axios in next js on both client and server?

  • @digitnomad
    @digitnomad 2 місяці тому

    Agreed, they are not React/Next, like I wont like nestjs instead of node, they are wraps, not authentic product.

  • @hicoop
    @hicoop 2 місяці тому

    While I completely agree that NextJS tools have come a long way, there are still many things that it can't do better than these tools. For a simple dashboard, obviously framework native tools easier and cleaner, but when your product needs cache invalidation or route groups requiring API tokens, React Query and tRPC does it better. There isn't a feeling more daunting than realizing that your janky custom workarounds are standard in a package that simplifies your workflow.

  • @chun-lunlin7397
    @chun-lunlin7397 2 місяці тому

    please update the video title by adding "in nextjs"

  • @olexh2605
    @olexh2605 2 місяці тому

    Does there exist a proper implementation of infinite scroll data without using react query prefetching in Next.js server components?

    • @CouchProgrammer
      @CouchProgrammer 2 місяці тому

      This is part of the streaming api. It's still experimental. But this is not so important, the important thing is that you want to track the state on the client and initiate a request from the client, which means you must manage the cache and state of requests on the client. This means that you are using React-Query. This means that you have 2 managed caching layers. No options.
      For static sites, you almost never need to track requests and states; the maximum network interactivity on such sites is a link or a static form, apparently the author makes only such sites.

    • @CouchProgrammer
      @CouchProgrammer 2 місяці тому

      Moreover, for static sites like a blog, you want to compile the html and put it on a CDN, that is, you do not need a running application per request. You need to make a couple of endpoints for lambda functions or even connect it as an external service without your own backend. So server actions will eat your money by forcing you to use expensive infrastructure. So for many applications this is a very difficult architectural choice.

  • @NeoCoding
    @NeoCoding 2 місяці тому

    It’s a pitfall indeed, it seems i missed key in my Suspenses

  • @netssrmrz
    @netssrmrz 2 місяці тому

    I enjoyed watching this video but chasing the latest shiny thing is not sustainable. If you want to cache calls, just set the appropriate header. If you want to return more records in one call, implement paging. I believe a better approach is to use the platform and learn the concepts, instead of installing yet another dependency and refactoring a whole project. As for server side rendering, I don't imagine it'll ever be competitive as an enterprise solution. We've been there and tried that.

  • @devman5813
    @devman5813 2 місяці тому

    Angular 17

  • @radulaski
    @radulaski 2 місяці тому

    Not really sure if the change was for the good of bad, only time will tell...

  • @Goofy8907
    @Goofy8907 6 днів тому

    Feet app?

  • @bilalch898
    @bilalch898 2 місяці тому +3

    Yeah you don't need the OG, the only robust data fetching solution, the REACT-QUERY 🔥..
    As long as you are not making a Todo app 😂😂😂.
    React query will stay relevant and no.1 as long as it is about async state management.

  • @aeronwolfe7072
    @aeronwolfe7072 2 місяці тому

    a "feet" app? 4:21 why have I been using React for years, and never heard this term?? i feel dumb.

  • @eindbaas
    @eindbaas 2 місяці тому

    Does this work outside of Vercel though?

  • @beratyilmaz7951
    @beratyilmaz7951 2 місяці тому +1

    how about SWR

  • @FranFiori94
    @FranFiori94 2 місяці тому +1

    It sounds you are saying feet app and i had no idea ehat you meant lol

    • @ByteGrad
      @ByteGrad  2 місяці тому

      Haha yeah dont know what happened there

  • @infalsese
    @infalsese 2 місяці тому

    Hey. Thanks for the video. But the name is obvious clickbait. You covered there only the very basic case. Data loading with static cashing. But what will happen if this information becomes user-specific? Plus, let's say, with client-side updates.
    revalidatePath/revalidateTag are not the best options there, as they affect not only client-side router cache, but also server-side cashe (I mean Next.js Full route cache). The best approach there will still be using client-side async state managers like SWR/React-Query/etc. With initial server-side loading using RSC we update client-side cache and operate with it.

  • @alexdin1565
    @alexdin1565 2 місяці тому

    but in next js when you fetch data its fetched twice ==== the same as react
    im not react dev just i like to comment

    • @SylixAI
      @SylixAI 2 місяці тому +1

      I believe it's caused by Strict Mode but it works perfectly on production and you can also disable it if you want.

    • @naylord5
      @naylord5 2 місяці тому

      This behavior only happens in development mode, because React run several things twice, but in production everything works "normal".

  • @RodrigoDev
    @RodrigoDev 4 дні тому

    put simply you don't use client components, real time data or anything of that sort.

  • @dosomecoding
    @dosomecoding 2 місяці тому +6

    Great now you are vender locked

    • @hannad
      @hannad 2 місяці тому +1

      Aren’t you anyway locked when you decided to use next ?

  • @jowarnis
    @jowarnis 2 місяці тому

    React query is great, Next.js and trpc is literal garbage (has place in personal projects), why would you want your BE written with TS for a real project.. ??? Next.js is such a convoluted mess it makes me sick.

  • @datalane
    @datalane 2 місяці тому

    Maybe just littlebit slower next time? 😂