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

Поділитися
Вставка
  • Опубліковано 20 сер 2024
  • Since its release in May, the Next.js App Router is loved by many and criticized by others for not being production-ready. Which option makes more sense for your use case? Let's look at both the positives and negatives, allowing you to make a proper choice for your next project.
    Discord: / discord
    GitHub: github.com/jos...

КОМЕНТАРІ • 94

  • @dansurfrider
    @dansurfrider Рік тому +203

    You can read, so I'm not going to repeat it. *repeats it in reverse

  • @Imjoshnewton
    @Imjoshnewton Рік тому +29

    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.

  • @robertmorells9467
    @robertmorells9467 Рік тому +12

    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  Рік тому +1

      Really interested in those too. Thank you for the kind words man. Means a lot.

  • @joshlansah
    @joshlansah Рік тому +3

    You are so consistent with your content. Thank you for providing this info for free.

  • @miro-hristov
    @miro-hristov Рік тому +15

    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.

  • @bilbobeutlin3405
    @bilbobeutlin3405 Рік тому +6

    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 Рік тому +11

    Look at that suble data fetching. The tasteful routing of it. Oh my god, it even has a caching mechanism.

    • @joshtriedcoding
      @joshtriedcoding  Рік тому +2

      Oh my god are you the dude that keeps commenting the Paul Allen stuff hahahaha

  • @muhammedmaher6704
    @muhammedmaher6704 Рік тому +3

    It's normal for me now to just click the like button even before I see the video, amazing work bro, keep it up. 💪

  • @tomirodriguez7195
    @tomirodriguez7195 Рік тому +8

    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  Рік тому +3

      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

  • @greendsnow
    @greendsnow Рік тому +3

    I jumped to Astro and I'm happy about it.

  • @mohitcodeswell
    @mohitcodeswell Рік тому +8

    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  Рік тому +6

      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 Рік тому +2

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

  • @anwar_thoughts2738
    @anwar_thoughts2738 Рік тому +2

    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

  • @MDKhan-ww5tp
    @MDKhan-ww5tp Рік тому +8

    Love you videos but can you please make a video on your vscode setup

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

  • @rijkvanwel
    @rijkvanwel Рік тому +3

    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 Рік тому +1

      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?

  • @TheViktors11
    @TheViktors11 Рік тому +6

    Good point about other library support. Currently struggling to implement stripe with next 13 as it is.
    Planning a video on that anytime soon?

  • @shahariarniloy8935
    @shahariarniloy8935 Рік тому +4

    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.

  • @gh0stcloud499
    @gh0stcloud499 Рік тому +1

    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.

  • @sahilaggarwal2004
    @sahilaggarwal2004 Рік тому +2

    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.

  • @igrschmidt
    @igrschmidt Рік тому

    Great content as always!
    A video about all the caching possibilities using app router would be lovely.

  • @saralightbourne
    @saralightbourne Рік тому +2

    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

  • @arcsenco.3774
    @arcsenco.3774 Рік тому +3

    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

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

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

    🔥 🔥

  • @rockNbrain
    @rockNbrain Рік тому +1

    Great job Josh 🎉 tks

  • @mogipls
    @mogipls Рік тому

    Great, I was actually literally about to Google this, how timely

  • @user-nq7di4og3z
    @user-nq7di4og3z Рік тому

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

  • @NenadKaevik
    @NenadKaevik 5 місяців тому

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

  • @traveljeep-y7e
    @traveljeep-y7e Рік тому

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

  • @Dev-Siri
    @Dev-Siri Рік тому +1

    Next 13: Think static, think fast, Think Caching, DO dynamic

  • @AnweshGangula
    @AnweshGangula Рік тому +1

    at 5:12, you mentioned D3 stack issues. can you add the link to the resource which talks about the issue?

  • @BlobBlobkins
    @BlobBlobkins Рік тому

    Would like to see a video about caching that you mentioned.

  • @rod6722
    @rod6722 Рік тому +2

    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  Рік тому +3

      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

  • @realdaly
    @realdaly Рік тому

    tbh I didn't know that u can use the "pages" and "app" at the same project!

  • @qwerty-or1yg
    @qwerty-or1yg 6 місяців тому

    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

  • @jakelanning1535
    @jakelanning1535 Рік тому +1

    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

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

  • @user-py2le2gx9b
    @user-py2le2gx9b Рік тому

    even use export const dynamic or revalidate 0 , the page still cache, how to fix em ?

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

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

  • @footballforlife09
    @footballforlife09 7 місяців тому

    What about transitioning from pages router to app router, is that upgrade possible?

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

  • @user-wr3qq1oc7o
    @user-wr3qq1oc7o 9 місяців тому

    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.

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

  • @Metruzanca
    @Metruzanca 11 місяців тому +1

    0:05 - jesus fucking christ, love me some good accurate titles.

  • @user-sm3rx2uw7r
    @user-sm3rx2uw7r Рік тому

    acan u explain how the cookie Pop up wotks and how to store them in a DB

  • @sanjaybalnad4180
    @sanjaybalnad4180 15 днів тому

    I guess page router was not serverless by default but app router is

  • @BensLifeTips
    @BensLifeTips 11 місяців тому

    No CSS-in-JS!!! WTF were they thinking?!?!? This cuts out so much of the dev community who love Styled-Components, Emotion, etc.

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

  • @samislam2746
    @samislam2746 6 місяців тому

    Vercel is pushing react into the edge, and literally this is destroying the simplicity of what react used to be.

  • @MrManafon
    @MrManafon Рік тому

    T3 works just fine with app router, its just not the default

  • @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 Рік тому +1

      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 Рік тому +1

      Confirmed working in 13.2! I guess 13.4.6 isn't quite ready yet.

  • @developerpranav
    @developerpranav Рік тому

    Hey your discord server link isnt working

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

  • @sigmamale7914
    @sigmamale7914 Рік тому

    pls build a video / Day in a life of 'Josh" so we can see , bc u work hard too much

  • @kdstudiogames3602
    @kdstudiogames3602 Рік тому

    Can we use app router and page router both in same project?

    • @joshtriedcoding
      @joshtriedcoding  Рік тому +1

      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

  • @sigmamale7914
    @sigmamale7914 Рік тому

    please teach advanced next-js13.4 all features all in one video

  • @codedusting
    @codedusting Рік тому

    This is hard to follow. Everything you said, if followed by practical example, would have helped better.

  • @meowhib
    @meowhib Рік тому +2

    Bruh I started learning it 3 days ago don't do this to me

    • @kakun7238
      @kakun7238 Рік тому +2

      its fine but i would suggest to learn the pages router first

  • @xxXAsuraXxx
    @xxXAsuraXxx Рік тому

    The latest is always the best, until they are actaully stable

  • @diego0ji
    @diego0ji Рік тому

    Pages!!!!

  • @user-ff3wc9fm5u
    @user-ff3wc9fm5u Рік тому

    traveler