Тёмный

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

ByteGrad
Подписаться 120 тыс.
Просмотров 66 тыс.
50% 1

Hi, I'm Wesley. I'm a brand ambassador for Kinde (paid sponsorship). Add auth to your Next.js app fast: bit.ly/3QOe1Bh
👉 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

Опубликовано:

 

18 май 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 167   
@ByteGrad
@ByteGrad 3 месяца назад
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.
@ahmetdeniz3201
@ahmetdeniz3201 3 месяца назад
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 3 месяца назад
​@@bozzistef querystring
@sohhamm
@sohhamm 3 месяца назад
try to use URLs for state management, this problem will be solved
@irfantayyib
@irfantayyib 3 месяца назад
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 3 месяца назад
Thanks, appreciate it!
@nathanpotter1334
@nathanpotter1334 3 месяца назад
+1 - You have an amazing way of explaining things. Got me started with full-stack next projects
@ts8960
@ts8960 2 месяца назад
surprised its not clickbait and actually teaching. thanks for the info
@nobodysaysmynameright
@nobodysaysmynameright 3 месяца назад
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!
@adipati27ma
@adipati27ma 3 месяца назад
Great content!! new insight achieved, thank you !
@brancode404
@brancode404 3 месяца назад
What a great video bro. Making things clear and understanable
@chriss87878
@chriss87878 3 месяца назад
High quality video, thanks!
@backbenchercoding1388
@backbenchercoding1388 3 месяца назад
really appreciate these indepth videos
@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!
@ayushshende4290
@ayushshende4290 3 месяца назад
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
@TommyAMV 3 месяца назад
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.
@lukem829
@lukem829 Месяц назад
the best nextjs vids! thanks so much for this man
@svict4
@svict4 3 месяца назад
really cool! nextjs fetching is just missing a devtools equivalent for easy debugging
@EvaporatedBoy
@EvaporatedBoy 3 месяца назад
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.
@sanjoyrakshit842
@sanjoyrakshit842 3 месяца назад
Really very useful information and good guidance love from India ❤❤
@Scapben
@Scapben 10 дней назад
"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
@jowadev 3 месяца назад
Great video !
@treyrader
@treyrader 3 месяца назад
amazing! Thanks :)
@buzz1ebee
@buzz1ebee 3 месяца назад
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 2 месяца назад
@@buzz1ebee do you use next.js app router? it should be the same thing surely?
@buzz1ebee
@buzz1ebee 2 месяца назад
@@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.
@mohamedazizhaddad5052
@mohamedazizhaddad5052 3 месяца назад
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-xs4th5rm6w 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 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
@ccopol
@ccopol 24 дня назад
I've just bought your courses thanks to this video. This video is very informative.
@ByteGrad
@ByteGrad 24 дня назад
Awesome, enjoy!
@ontanicolae1794
@ontanicolae1794 3 месяца назад
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
@venicebeachsurfer
@venicebeachsurfer 3 месяца назад
Do you mean V14 of next js and app router? I find the need for react-query using v12, quite a bit.
@GeekOverdose
@GeekOverdose 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
@tsooooooo
@tsooooooo Месяц назад
I came in as a skeptic but you convinced me to give it a try
@youneshenni5417
@youneshenni5417 3 месяца назад
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.
@NeoCoding
@NeoCoding 3 месяца назад
BTW what to pass to a Suspense key if it should get an array or object? To check if it has been changed?
@hanserlabber4164
@hanserlabber4164 3 месяца назад
"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."
@parkerrex
@parkerrex 3 месяца назад
fantastic
@dejoma.
@dejoma. 3 месяца назад
How do you await fetch in a client component? Can you just make an async client component?
@ZainRamzan-pt8cm
@ZainRamzan-pt8cm 3 месяца назад
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
@grahampcharles
@grahampcharles 3 месяца назад
This is just if you’re using server functions, yes? So if I’m still on Nextjs 13, I should stick with React Query?
@hooyah
@hooyah Месяц назад
thanks. now i know server action. i never used it before.
@tiagoc9754
@tiagoc9754 3 месяца назад
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.
@Aji0t
@Aji0t 3 месяца назад
Hey is the code available for testing? All 3 approaches?
@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?
@guilhermenascimento4067
@guilhermenascimento4067 3 месяца назад
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()"
@baoduy
@baoduy 2 месяца назад
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 } )
@CoryTheSimmons
@CoryTheSimmons 3 месяца назад
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.
@MuhdHanish
@MuhdHanish 3 месяца назад
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.
@Anto-mi5pn
@Anto-mi5pn 3 месяца назад
Can someone tell me how server actions work? A HTTP request is still made to the backend, right?
@Jorschm
@Jorschm Месяц назад
Is there another way for handling fetching on the server side without using fetch? as its syntax is well, not my favorite.
@etiennerobert6918
@etiennerobert6918 2 месяца назад
Awesome content
@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…
@MrNitrocification
@MrNitrocification 3 месяца назад
how would you combine nextjs with a .net backend api?
@aryan.prince
@aryan.prince 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 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
@abdushakoor0099
@abdushakoor0099 2 месяца назад
quality content
@henriquematias1986
@henriquematias1986 3 месяца назад
Kinda reminds me of what Meteor was! But more up to date/standards
@user-sc2dc4ud7b
@user-sc2dc4ud7b 3 месяца назад
You mentioned that server actions are like POST but can't server actions do a GET too?
@noahginsburg6140
@noahginsburg6140 3 месяца назад
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.
@franciscolagorio6757
@franciscolagorio6757 3 месяца назад
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?
@joseflinha
@joseflinha 3 месяца назад
Will there be another video? ... Why use SvelteKit? :D
@roberth8737
@roberth8737 3 месяца назад
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
@brianmcbride1631
@brianmcbride1631 3 месяца назад
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.
@Santiego
@Santiego 3 месяца назад
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....
@ankitpradhan4183
@ankitpradhan4183 3 месяца назад
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?
@Tony-dg1hm
@Tony-dg1hm 2 месяца назад
🔥🔥🔥
@rdec5448
@rdec5448 3 месяца назад
Hope to see a video in my recommended named "Why I don't use React anymore" someday :)
@Mirislomovmirjalol
@Mirislomovmirjalol 3 месяца назад
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.
@amansarma417
@amansarma417 3 месяца назад
After watching this i appreciate how good laravel is now nextjs is following that methodology
@imkir4n
@imkir4n 3 месяца назад
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
@kasparsiricenko2240
@kasparsiricenko2240 3 месяца назад
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
@Omarwaqar-pt7wf
@Omarwaqar-pt7wf 3 месяца назад
What about next safe action with server actions
@Infinite_Mainak
@Infinite_Mainak 3 месяца назад
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
@abdelhameedhamdy
@abdelhameedhamdy 3 месяца назад
I see that react query is useful in react native projects.
@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?
@kuldeepsaini460
@kuldeepsaini460 3 месяца назад
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 😅
@kuldeepsaini460
@kuldeepsaini460 3 месяца назад
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.
@EnriqueDominguezProfile
@EnriqueDominguezProfile 3 месяца назад
Raact Query is useful beyonf fetching data. It's allbout about asynchronous operations on the State.
@Foused87
@Foused87 3 месяца назад
How to convert react to pdf?
@godofwar8262
@godofwar8262 3 месяца назад
What is trcp I don't know about it
@paw565
@paw565 Месяц назад
Honestly I hate fetch, can you make some video about axios in next js on both client and server?
@amanrubey
@amanrubey 3 месяца назад
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 🛐
@zoki5388
@zoki5388 3 месяца назад
It would be nice if react router loaders were compared too
@sayedulkrm
@sayedulkrm 3 месяца назад
I love redux-toolkit ❤
@richardflosi
@richardflosi 3 месяца назад
Why not fix the cache?
@mkaufmandev
@mkaufmandev Месяц назад
What is a React “feat or feet” app? Mentioned at 4:30 please. Thanks
@nousername636
@nousername636 Месяц назад
"Vite"
@digitnomad
@digitnomad 3 месяца назад
Agreed, they are not React/Next, like I wont like nestjs instead of node, they are wraps, not authentic product.
@devman5813
@devman5813 3 месяца назад
Angular 17
@chun-lunlin7397
@chun-lunlin7397 3 месяца назад
please update the video title by adding "in nextjs"
@hicoop
@hicoop 3 месяца назад
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.
@CookerSingh
@CookerSingh 3 месяца назад
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.
@olexh2605
@olexh2605 3 месяца назад
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.
@radulaski
@radulaski 2 месяца назад
Not really sure if the change was for the good of bad, only time will tell...
@netssrmrz
@netssrmrz 3 месяца назад
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.
@NeoCoding
@NeoCoding 3 месяца назад
It’s a pitfall indeed, it seems i missed key in my Suspenses
@rugucloud
@rugucloud 3 месяца назад
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.
@aeronwolfe7072
@aeronwolfe7072 3 месяца назад
a "feet" app? 4:21 why have I been using React for years, and never heard this term?? i feel dumb.
@Goofy8907
@Goofy8907 19 дней назад
Feet app?
@eindbaas
@eindbaas 3 месяца назад
Does this work outside of Vercel though?
@FranFiori94
@FranFiori94 3 месяца назад
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
@beratyilmaz7951
@beratyilmaz7951 3 месяца назад
how about SWR
@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 3 месяца назад
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".
@bilalch898
@bilalch898 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.
@dosomecoding
@dosomecoding 3 месяца назад
Great now you are vender locked
@hannad
@hannad 2 месяца назад
Aren’t you anyway locked when you decided to use next ?
@RodrigoDev
@RodrigoDev 17 дней назад
put simply you don't use client components, real time data or anything of that sort.
@jowarnis
@jowarnis 3 месяца назад
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.
Далее
All 29 Next.js Mistakes Beginners Make
1:45:10
Просмотров 35 тыс.
Web Developer Roadmap (2024) - Everything is Changing
25:02
You Need React Query Now More Than Ever
11:04
Просмотров 136 тыс.
I DONT USE NEXT JS
54:01
Просмотров 308 тыс.
This Data Fetching Combo is OP
7:19
Просмотров 49 тыс.
10 common mistakes with the Next.js App Router
20:37
Просмотров 168 тыс.
React + Servers = Confusion
20:30
Просмотров 39 тыс.