Тёмный

Next.js App vs. Pages Router - Which One is Better? 

Josh tried coding
Подписаться 161 тыс.
Просмотров 58 тыс.
50% 1

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

 

22 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 97   
@dansurfrider
@dansurfrider Год назад
You can read, so I'm not going to repeat it. *repeats it in reverse
@joshtriedcoding
@joshtriedcoding Год назад
yeah I noticed I literally just repeated it wtf
@richardkirigaya8254
@richardkirigaya8254 Год назад
Lmao
@real23lions
@real23lions Год назад
😂😂
@kaviisuri9997
@kaviisuri9997 Год назад
You made me laugh out loud as soon as I clicked the video😂
@Taooflu
@Taooflu Год назад
@@joshtriedcodinggood teachers repeat, it’s a good thing
@Imjoshnewton
@Imjoshnewton Год назад
I think this is a natural progression that we go through in tech. New things are introduced to solve a problem or make something better, everyone is excited about it, lots of videos are made about it as it is a hot topic, then people realize it’s not a silver bullet that works for every situation. I’m sure like a lot of people I’m using the app router for side projects and even side hustles. However, the production apps I work on at work aren’t getting rewritten for the app directory any time soon.
@bilbobeutlin3405
@bilbobeutlin3405 Год назад
I tried the app router with server components and i loved it, you can replace trpc pretty much with server components. It`s only confusing that there are no established patterns and best practices so you have to find something that works for you and hope its scales. But still super exicting to have so much new stuff to learn and explore!
@BeyondLegendary
@BeyondLegendary Год назад
Look at that suble data fetching. The tasteful routing of it. Oh my god, it even has a caching mechanism.
@joshtriedcoding
@joshtriedcoding Год назад
Oh my god are you the dude that keeps commenting the Paul Allen stuff hahahaha
@miro-hristov
@miro-hristov Год назад
As of right now, the /app router is completely useless. It is nearly impossible to disable the cache and get new content when using . Even with revalidate = 0; or fetchCache = "force-no-store"; or prefetch={false} the data remains stale. You may get lucky if you refresh the page but that defeats the purpose of SPA. I'd love to see a minimal working example of Next 13 using and fetching new fresh data every time the link is clicked.
@robertmorells9467
@robertmorells9467 Год назад
Hi Josh I think you are the most clear to understand teacher I have ever listened too, I feel I am absorbing the most important information from you than any other teacher out there, Because you are so up to date on the tech stack it’s crazy, please keep making these videos man you are one of the best out there :) P.S can’t wait to this new Open-Ai Functions get out there I would love to see how this new open-AI functions work and what the possibilities are as far as calling outside functions to interact with open-AI :)
@joshtriedcoding
@joshtriedcoding Год назад
Really interested in those too. Thank you for the kind words man. Means a lot.
@ajinkyanarwade
@ajinkyanarwade Год назад
Thank you Josh. Summary - 1. Routing pages directory uses client side routing while app uses server side rendering. Route map is not required to download in client for app directoy. Granular caching approach with app router. Dx and Ux is better. But pages is battle tested and used in production. 2. SUpport - Not ready yet. All page directory functionalities may not work. You will get more community support for page directory. 3. Performance Slower req per sconds parameter compared to pages directory. Switch incrementally to app routing from page routing for solving issues.
@TheViktors11
@TheViktors11 Год назад
Good point about other library support. Currently struggling to implement stripe with next 13 as it is. Planning a video on that anytime soon?
@tomirodriguez7195
@tomirodriguez7195 Год назад
I love how app router works and all the idea behind to move all client stuff to the server. That been said, I still think the support from libraries is a BIG trade off that I'm not sure I want to pay. The beauty about all this, is that both con live together, so you could be using app router and page router as you mention in your video, without any problem :)
@joshtriedcoding
@joshtriedcoding Год назад
Exactly. People have speculated the pages router might be completely removed in Next.js 14 in the future, but judging by how slow corporate adoption for new tech is I am convinced incremental adoption like this will be available for a looong time
@mohitcodeswell
@mohitcodeswell Год назад
Hey Josh, please make a complete tutorial on frontend authentication on react (or next). To understand the complete flow with all possible user interferences.
@joshtriedcoding
@joshtriedcoding Год назад
Aye good idea, could highlight both next-auth and an external service like clerk for that
@dennisgroen4932
@dennisgroen4932 Год назад
@@joshtriedcoding In addition I would love to see how you would solve the problem for local dev with next auth, like how you can switch between users without having to use lets say a google auth. This would be helpful if you want to develop when being offline
@real23lions
@real23lions Год назад
@@joshtriedcodingthat would be useful. I’m using Clerk. Would love to see another point of view
@DestinoDello
@DestinoDello Год назад
Clerk
@mohitcodeswell
@mohitcodeswell Год назад
@@real23lions I've never used clerk. Could you brief me about that ?
@greendsnow
@greendsnow Год назад
I jumped to Astro and I'm happy about it.
@anwar_thoughts2738
@anwar_thoughts2738 Год назад
Thank you for theses videos , i used app router in local env and my project was working fine wine but when I deployed it even before . When building it I had much errors from fetch to urls to revalidating errors that broke the building so I stopped and switched to pages and the project is fine and deployed now
@rijkvanwel
@rijkvanwel Год назад
Great video, and having used the app router in a production app I support your final conclusion. It is really nice to work with, and the UX is far superior. We def do need better tooling around the cache though.
@jameshets6780
@jameshets6780 Год назад
The client side has better options for caching unless you want to pay more for server (Vercel). It's puzzling why every Nextjs feature relies on the server.
@NOBODYxx09
@NOBODYxx09 Год назад
@@jameshets6780 devices are so much advanced these days i do think some things like caching should be handled on the devices right?
@sahilaggarwal2004
@sahilaggarwal2004 Год назад
The app router is good, but the one thing that seems lacking to me with RSC is that you can't do client level caching for the pages that show user specific data, which is needed for a better offline experience in a PWA. Sticking with client components until that somehow magically becomes possible.
@gh0stcloud499
@gh0stcloud499 Год назад
One really nice thing about the T3 bootstrap with tRPC is that it give you a centralized endpoint that you can use to pipe additional context/middleware through. This is really nice for things like logging or authorization. I haven't found a nice way to do something similar with the app router. I might not have found it yet or it might simply be that nextjs is moving away from that paradigm (I guess the app router is more 'serverless' in that sense) . This plus type safety on requests are two things I think that are still missing from the app router. I hope Vercel look at how Nuxt handles their type safe requests. They do it in such an awesome way.
@shahariarniloy8935
@shahariarniloy8935 Год назад
To me app router is more declarative than page router. it has certain rules/convention to follow and has lesser control to do conditional stuff. rather page router is more imperative and devs has much more control over whole app.
@joshlansah
@joshlansah Год назад
You are so consistent with your content. Thank you for providing this info for free.
@joshtriedcoding
@joshtriedcoding Год назад
Appreciate ya dude
@arcsenco.3774
@arcsenco.3774 Год назад
Seems like App Router's deployment was rushed. Some of the new routing changes could've been implemented incrementally so that there wasn't such a big shock to the ecosystem. Now it seem s like the react ecosystem is trying to adjust to this major change. I enjoy some of the new changes though and they've done a good job but for simpler applications the old method seems like the way to go
@MDKhan-ww5tp
@MDKhan-ww5tp Год назад
Love you videos but can you please make a video on your vscode setup
@wilsonmateo6346
@wilsonmateo6346 Месяц назад
thanks i had no idea but i will take my chances with app router
@ladywebber1726
@ladywebber1726 3 дня назад
Thank you for this video. I have been using both and I am still unsure if i should move all my apps to the app router
@igrschmidt
@igrschmidt Год назад
Great content as always! A video about all the caching possibilities using app router would be lovely.
@codinginflow
@codinginflow Год назад
Fun fact: I created this Reddit thread: 3:09. One or two points were a misunderstanding by me tho. But I've also found some other problems meanwhile.
@rod6722
@rod6722 Год назад
Curious if you tried Remix, and if so how you think it compares to Next 13. It seems like some new Next features, like nested routing and server actions, were inspired by Remix.
@joshtriedcoding
@joshtriedcoding Год назад
Oh yeah, remix had these features stable while Next.js just dropped them in beta. But haven't actually built any substantial app with Remix
@saralightbourne
@saralightbourne Год назад
i've had a very weird issue with app router that forced me to go back to pages. there's loading.tsx fallback file which displays while page.tsx is being loaded and sent back to the client. i was writing client side filters which are synchronised with url query parameters so i used useRouter and .push method to change those parameters. but app's useRouter.push doesn't have {shallow: true} so every time a query parameter is changed, it requests page.tsx to load data again. and it's actually fine, no need to fetch data from client side with react-query or useSWR. but the problem is that it does not trigger loading.tsx so every time i selected new filters, the page was stuck for like 2 seconds while the new data is being rendered. i ended up rewriting that logic with pages router, react-query and getServerSide props for initial load of the content
@zhouyang-r2b
@zhouyang-r2b Год назад
app routers is hard for me to use and understand, but that doesn't stop me from looking forward to the new way of routing!--.--
@muhammedmaher6704
@muhammedmaher6704 Год назад
It's normal for me now to just click the like button even before I see the video, amazing work bro, keep it up. 💪
@joshtriedcoding
@joshtriedcoding Год назад
Cheers dude appreciate it
@muhammadusama7121
@muhammadusama7121 Год назад
Great video as always Josh. one thing I don't understand is. All web apps which I build have 90% api calls that have auth headers (user specific calls) in them and they are not cached by default. So does that mean I have to use the React cache function ? In docs they specifically mention that fetch data where you need it and due to deduping we should not be worried how many same calls we making. But when auth headers are present there is no deduping and have to rely on prop drilling which gets nasty. So is the React cache function the right way to do it?
@AnweshGangula
@AnweshGangula Год назад
at 5:12, you mentioned D3 stack issues. can you add the link to the resource which talks about the issue?
@mogipls
@mogipls Год назад
Great, I was actually literally about to Google this, how timely
@rockNbrain
@rockNbrain Год назад
Great job Josh 🎉 tks
@LeviElekes
@LeviElekes 4 месяца назад
🔥 🔥
@questionyourbeliefs
@questionyourbeliefs Год назад
When you say you can switch back to pages, are you saying that you can have a pages and app router alongside each other? Did not know this was possible!
@BlobBlobkins
@BlobBlobkins Год назад
Would like to see a video about caching that you mentioned.
@RaghuprasaadIyer
@RaghuprasaadIyer Год назад
can you make a video on astro vs qwik and show perfformance comparison and which one do you prefer, since both of them are more performant than nextjs pages and app
@jakelanning1535
@jakelanning1535 Год назад
I have tried using the app router hosting on aws. I'm having problems accessing the cookies in the server component. Its extremely frustrating, as it works fine on vercel and my local, but not on the aws deployment. It's very weird, the site works on first load, but on subsequent refreshes I get 500s on pages where i try to access the cookies (have tested using both headers() and cookies() - same thing). The only console error is 'A client side exception occured'. I wish I could figure out another way to look into the logging. It seems like the first load is properly server rendered, but the refresh is trying to render my server component on the client, causing an error. Either way, the problem doesn't exist with getServerSideProps, so I'll be using that. I really hope AWS fixes this, I would love to delete the pages directory. It's a new project, I don't want to start using pages on the side, knowing that the app is available.
@zmorphy
@zmorphy Год назад
Did you solve the problem or did you end up switching to page?
@jakelanning1535
@jakelanning1535 Год назад
Switched to svelte lol. Trying to play with cookies in an app that can be both server side and client side rendered is a recipe for a bad time.@@zmorphy
@qwerty-or1yg
@qwerty-or1yg 8 месяцев назад
How would you go about implementing a sidebar layout in /blog/id pages but all other pages would have a root layout using nextjs app router
@TravelJeep-h2c
@TravelJeep-h2c Год назад
I have also faced a problem with uploading files using the app router. I spent two days debugging, but unfortunately, I couldn't find a solution. Currently, I am using both pages and the app router to address the issue. 😒
@realdaly
@realdaly Год назад
tbh I didn't know that u can use the "pages" and "app" at the same project!
@Dev-Siri
@Dev-Siri Год назад
Next 13: Think static, think fast, Think Caching, DO dynamic
@HungNguyen-tl9kg
@HungNguyen-tl9kg Год назад
I got into this message when try to use app dir & pages dir together. "Warning: Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported." what does it really mean?
@BensLifeTips
@BensLifeTips Год назад
No CSS-in-JS!!! WTF were they thinking?!?!? This cuts out so much of the dev community who love Styled-Components, Emotion, etc.
@TheEdge92
@TheEdge92 Месяц назад
@3:10 How is it looking now in mid-24 heading towards 25?
@khaledsanny4817
@khaledsanny4817 Год назад
Website became so complex to build… i like app router but page router is better for me … and I prefer how NuxtJS handle renderings even more
@AsemAmr19
@AsemAmr19 Год назад
the App direcoty router is awesome with it's reserved compnent and I really like it, But one thing i have issue with it is the Page Transition when I implement the Page Transition with framer motion library it doesn't work for me mybe the machenism of page transiton in framer motion developt according to the page rounter only. I don't know
@NenadKaevik
@NenadKaevik 7 месяцев назад
Man i just finished a whole app in react and i totally forgot about SEO so now im banging my head to switch to next with app router -_-
@footballforlife09
@footballforlife09 9 месяцев назад
What about transitioning from pages router to app router, is that upgrade possible?
@rpwozael
@rpwozael Год назад
even use export const dynamic or revalidate 0 , the page still cache, how to fix em ?
@MrManafon
@MrManafon Год назад
T3 works just fine with app router, its just not the default
@NFT-n4g
@NFT-n4g 11 месяцев назад
i have very big problem in the one of my project in app router and this is that i cant catch the complete URL or after hash(#) in URL *in server component* or *server side* and that why i want drop app router. as you know we can use (Param) for get just first section of dynamic URL or route and use (searchParam) for catch query parameter after that but i cant catch *hash* after dynamic router. could you plz pin my problem its very serious.
@Metruzanca
@Metruzanca Год назад
0:05 - jesus fucking christ, love me some good accurate titles.
@gunman479
@gunman479 Год назад
I've recently experienced issues with the App router and API routes. I can't seem to get DELETE requests working. I get TypeError: Response body object should not be disturbed or locked.
@joshtriedcoding
@joshtriedcoding Год назад
Interesting that shouldn't happen
@huzaifac137
@huzaifac137 Год назад
I also struggled with the delete requests while passing headers and using them .
@nat_pinnock
@nat_pinnock Год назад
I think there is an open GitHub issue on this. I had to roll back to 13.2 (if I remember correctly) to get delete requests to work
@gunman479
@gunman479 Год назад
Confirmed working in 13.2! I guess 13.4.6 isn't quite ready yet.
@samislam2746
@samislam2746 8 месяцев назад
Vercel is pushing react into the edge, and literally this is destroying the simplicity of what react used to be.
@SharifKhan-v8d
@SharifKhan-v8d Год назад
acan u explain how the cookie Pop up wotks and how to store them in a DB
@sanjaybalnad4180
@sanjaybalnad4180 2 месяца назад
I guess page router was not serverless by default but app router is
@kdstudiogames3602
@kdstudiogames3602 Год назад
Can we use app router and page router both in same project?
@joshtriedcoding
@joshtriedcoding Год назад
oh yeah
@kdstudiogames3602
@kdstudiogames3602 Год назад
@@joshtriedcoding brother, can I get your WhatsApp number?
@lehaiquantb
@lehaiquantb Год назад
@@joshtriedcoding Im starting with new project, but confusing. please make a video showing how to do that. Thanks
@developerpranav
@developerpranav Год назад
Hey your discord server link isnt working
@sigmamale7914
@sigmamale7914 Год назад
pls build a video / Day in a life of 'Josh" so we can see , bc u work hard too much
@codedusting
@codedusting Год назад
This is hard to follow. Everything you said, if followed by practical example, would have helped better.
@sigmamale7914
@sigmamale7914 Год назад
please teach advanced next-js13.4 all features all in one video
@joshtriedcoding
@joshtriedcoding Год назад
that would be a long ass video
@JohnnySalami-jo4jh
@JohnnySalami-jo4jh Год назад
It seems that the new App Router doesn't allow for shallow routing just yet? Anyone have any insight on this?
@diego0ji
@diego0ji Год назад
Pages!!!!
@meowhib
@meowhib Год назад
Bruh I started learning it 3 days ago don't do this to me
@kakun7238
@kakun7238 Год назад
its fine but i would suggest to learn the pages router first
@GiorgiKharbedia
@GiorgiKharbedia Год назад
traveler
Далее
Next.js App Router: Routing, Data Fetching, Caching
14:32
Giving Up On Next.js | Theo Reacts
44:49
Просмотров 124 тыс.
I tricked MrBeast into giving me his channel
00:58
Don't Make These Next.js Mistakes
13:01
Просмотров 23 тыс.
How is this Website so fast!?
13:39
Просмотров 511 тыс.
Next.js App vs Pages Router - Which One is Better?
9:57
Next.js App Router REVIEW (Six Months In Prod)
16:10
Просмотров 60 тыс.
10 common mistakes with the Next.js App Router
20:37
Просмотров 222 тыс.
Are we going back to PHP with fullstack JavaScript?
9:57
How to ACTUALLY Secure Your API (5 Steps)
7:42
Просмотров 63 тыс.