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

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

Пікірлер: 167

  • @ByteGrad
    @ByteGrad3 ай бұрын

    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

    3 ай бұрын

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

  • @irfantayyib
    @irfantayyib2 ай бұрын

    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 ай бұрын

    Thanks, appreciate it!

  • @nathanpotter1334

    @nathanpotter1334

    2 ай бұрын

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

  • @ahmetdeniz3201
    @ahmetdeniz32013 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

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

  • @bozzistef

    @bozzistef

    3 ай бұрын

    @@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 ай бұрын

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

  • @ts8960
    @ts89602 ай бұрын

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

  • @nobodysaysmynameright
    @nobodysaysmynameright3 ай бұрын

    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!

  • @brancode404
    @brancode4043 ай бұрын

    What a great video bro. Making things clear and understanable

  • @adipati27ma
    @adipati27ma3 ай бұрын

    Great content!! new insight achieved, thank you !

  • @chriss87878
    @chriss878783 ай бұрын

    High quality video, thanks!

  • @backbenchercoding1388
    @backbenchercoding13883 ай бұрын

    really appreciate these indepth videos

  • @ayushshende4290
    @ayushshende42903 ай бұрын

    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!

  • @TommyAMV
    @TommyAMV3 ай бұрын

    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 ай бұрын

    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.

  • @VaurionX
    @VaurionXАй бұрын

    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!

  • @sanjoyrakshit842
    @sanjoyrakshit8423 ай бұрын

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

  • @lukem829
    @lukem82929 күн бұрын

    the best nextjs vids! thanks so much for this man

  • @EvaporatedBoy
    @EvaporatedBoy3 ай бұрын

    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
    @svict43 ай бұрын

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

  • @ccopol
    @ccopol19 күн бұрын

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

  • @ByteGrad

    @ByteGrad

    19 күн бұрын

    Awesome, enjoy!

  • @Scapben
    @Scapben6 күн бұрын

    "If you do client side fetching [...] after a user action, for example, an infinite scroll [...] in that case, you may still want to use react query" You cannot imagine how much time I spend to make sure server actions were not appropriate for client side fetching. Holy cow. THANK YOU ♥

  • @jowadev
    @jowadev3 ай бұрын

    Great video !

  • @mohamedazizhaddad5052
    @mohamedazizhaddad50523 ай бұрын

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

  • @user-xs4th5rm6w
    @user-xs4th5rm6w2 ай бұрын

    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

    2 ай бұрын

    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

  • @treyrader
    @treyrader3 ай бұрын

    amazing! Thanks :)

  • @NeoCoding
    @NeoCoding3 ай бұрын

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

  • @buzz1ebee
    @buzz1ebee3 ай бұрын

    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

    3 ай бұрын

    we do the exact same thing!

  • @Disorrder

    @Disorrder

    3 ай бұрын

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

  • @buzz1ebee

    @buzz1ebee

    3 ай бұрын

    @@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.

  • @GeekOverdose
    @GeekOverdose3 ай бұрын

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

  • @dejoma.
    @dejoma.2 ай бұрын

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

  • @venicebeachsurfer
    @venicebeachsurfer2 ай бұрын

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

  • @youneshenni5417
    @youneshenni54173 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

    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.

  • @ontanicolae1794
    @ontanicolae17942 ай бұрын

    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

  • @Aji0t
    @Aji0t3 ай бұрын

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

  • @baoduy
    @baoduy2 ай бұрын

    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 ай бұрын

    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 } )

  • @tiagoc9754
    @tiagoc97543 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

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

  • @hanserlabber4164
    @hanserlabber41643 ай бұрын

    "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."

  • @Anto-mi5pn
    @Anto-mi5pn3 ай бұрын

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

  • @grahampcharles
    @grahampcharles3 ай бұрын

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

  • @tsooooooo
    @tsooooooo25 күн бұрын

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

  • @MrNitrocification
    @MrNitrocification3 ай бұрын

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

  • @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?

  • @Jorschm
    @JorschmАй бұрын

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

  • @roberth8737
    @roberth87373 ай бұрын

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

  • @ByteGrad

    @ByteGrad

    3 ай бұрын

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

  • @user-sc2dc4ud7b
    @user-sc2dc4ud7b2 ай бұрын

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

  • @joseflinha
    @joseflinha3 ай бұрын

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

  • @ZainRamzan-pt8cm
    @ZainRamzan-pt8cm3 ай бұрын

    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

  • @benjamingoller6267
    @benjamingoller6267Ай бұрын

    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…

  • @aryan.prince
    @aryan.prince3 ай бұрын

    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

    3 ай бұрын

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

  • @Lucas-gt8en

    @Lucas-gt8en

    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

    3 ай бұрын

    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

  • @parkerrex
    @parkerrex3 ай бұрын

    fantastic

  • @MuhdHanish
    @MuhdHanish3 ай бұрын

    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.

  • @franciscolagorio6757
    @franciscolagorio67572 ай бұрын

    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?

  • @noahginsburg6140
    @noahginsburg61403 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

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

  • @EduarteBDO

    @EduarteBDO

    3 ай бұрын

    @@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

    3 ай бұрын

    ​@@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.

  • @CoryTheSimmons
    @CoryTheSimmons3 ай бұрын

    Good video. Sucks Vercel hates React Native so much.

  • @gaiusjcaesar09

    @gaiusjcaesar09

    3 ай бұрын

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

  • @CoryTheSimmons

    @CoryTheSimmons

    3 ай бұрын

    @@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.

  • @Santiego
    @Santiego2 ай бұрын

    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....

  • @hooyah
    @hooyahАй бұрын

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

  • @ankitpradhan4183
    @ankitpradhan41833 ай бұрын

    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?

  • @guilhermenascimento4067
    @guilhermenascimento40673 ай бұрын

    The t3 stack make all this perfect.

  • @alfieqashwa5257

    @alfieqashwa5257

    3 ай бұрын

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

  • @henriquematias1986
    @henriquematias19863 ай бұрын

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

  • @brianmcbride1631
    @brianmcbride16313 ай бұрын

    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.

  • @Mirislomovmirjalol
    @Mirislomovmirjalol3 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

    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.

  • @rdec5448
    @rdec54482 ай бұрын

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

  • @Omarwaqar-pt7wf
    @Omarwaqar-pt7wf3 ай бұрын

    What about next safe action with server actions

  • @imkir4n
    @imkir4n3 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

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

  • @naylord5

    @naylord5

    3 ай бұрын

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

  • @imkir4n

    @imkir4n

    2 ай бұрын

    @@naylord5 yup thats how im going

  • @Infinite_Mainak
    @Infinite_Mainak3 ай бұрын

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

  • @filipfiser1045

    @filipfiser1045

    3 ай бұрын

    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

    3 ай бұрын

    @@filipfiser1045 thanks bro I will try it out

  • @kuldeepsaini460
    @kuldeepsaini4603 ай бұрын

    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

    3 ай бұрын

    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.

  • @kasparsiricenko2240
    @kasparsiricenko22402 ай бұрын

    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

  • @godofwar8262
    @godofwar82623 ай бұрын

    What is trcp I don't know about it

  • @etiennerobert6918
    @etiennerobert69182 ай бұрын

    Awesome content

  • @Foused87
    @Foused873 ай бұрын

    How to convert react to pdf?

  • @abdushakoor0099
    @abdushakoor0099Ай бұрын

    quality content

  • @paw565
    @paw565Ай бұрын

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

  • @mkaufmandev
    @mkaufmandevАй бұрын

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

  • @nousername636

    @nousername636

    Ай бұрын

    "Vite"

  • @kuldeepsaini460
    @kuldeepsaini4603 ай бұрын

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

  • @rajraman987

    @rajraman987

    3 ай бұрын

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

  • @filipfiser1045

    @filipfiser1045

    3 ай бұрын

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

  • @kuldeepsaini460

    @kuldeepsaini460

    3 ай бұрын

    @@rajraman987 router only works on client side

  • @kuldeepsaini460

    @kuldeepsaini460

    3 ай бұрын

    @@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 😅

  • @richardflosi
    @richardflosi2 ай бұрын

    Why not fix the cache?

  • @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?

  • @Tony-dg1hm
    @Tony-dg1hm2 ай бұрын

    🔥🔥🔥

  • @abdelhameedhamdy
    @abdelhameedhamdy3 ай бұрын

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

  • @amansarma417
    @amansarma4173 ай бұрын

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

  • @EnriqueDominguezProfile
    @EnriqueDominguezProfile3 ай бұрын

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

  • @olexh2605
    @olexh26053 ай бұрын

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

  • @CouchProgrammer

    @CouchProgrammer

    3 ай бұрын

    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

    3 ай бұрын

    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.

  • @Goofy8907
    @Goofy890715 күн бұрын

    Feet app?

  • @zoki5388
    @zoki53883 ай бұрын

    It would be nice if react router loaders were compared too

  • @aeronwolfe7072
    @aeronwolfe70722 ай бұрын

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

  • @digitnomad
    @digitnomad2 ай бұрын

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

  • @amanrubey
    @amanrubey3 ай бұрын

    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 🛐

  • @netssrmrz
    @netssrmrz2 ай бұрын

    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.

  • @sayedulkrm
    @sayedulkrm2 ай бұрын

    I love redux-toolkit ❤

  • @hicoop
    @hicoop3 ай бұрын

    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.

  • @eindbaas
    @eindbaas3 ай бұрын

    Does this work outside of Vercel though?

  • @CookerSingh
    @CookerSingh3 ай бұрын

    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.

  • @NeoCoding
    @NeoCoding3 ай бұрын

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

  • @radulaski
    @radulaski2 ай бұрын

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

  • @devman5813
    @devman58132 ай бұрын

    Angular 17

  • @chun-lunlin7397
    @chun-lunlin73973 ай бұрын

    please update the video title by adding "in nextjs"

  • @rugucloud
    @rugucloud3 ай бұрын

    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.

  • @beratyilmaz7951
    @beratyilmaz79513 ай бұрын

    how about SWR

  • @alexdin1565
    @alexdin15653 ай бұрын

    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

    3 ай бұрын

    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

    3 ай бұрын

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

  • @FranFiori94
    @FranFiori943 ай бұрын

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

  • @ByteGrad

    @ByteGrad

    3 ай бұрын

    Haha yeah dont know what happened there

  • @infalsese
    @infalsese2 ай бұрын

    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.

  • @bilalch898
    @bilalch8983 ай бұрын

    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.

  • @RodrigoDev
    @RodrigoDev12 күн бұрын

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

  • @dosomecoding
    @dosomecoding3 ай бұрын

    Great now you are vender locked

  • @hannad

    @hannad

    2 ай бұрын

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

  • @jowarnis
    @jowarnis3 ай бұрын

    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.