Learn NextJS's Superpower ISR in 15 Minutes

Поделиться
HTML-код
  • Опубликовано: 24 авг 2024
  • NextJS's Incremental Static Regeneration is a powerful tool for making your dynamic routes BLAZINGLY fast! :D Let's learn how to use it and how to verify that we used it correctly in our app. With ISR, you can convert dynamic routes into pre-rendered, static HTML + JSON routes.
    My GitHub: github.com/jos...
    ISR Documentation: beta.nextjs.or...
    I wish you a lot of fun implementing ISR into your app and seeing the results for yourself. Let me know if you build something cool with it! Cheers

Комментарии • 66

  • @livecode247
    @livecode247 Год назад +32

    NextJS SSR, SSG, ISG is probably one of the most timetaking thing to understand. Loved the video!

    • @joshtriedcoding
      @joshtriedcoding  Год назад +9

      Really is, took me a long time myself. Cheers man

  • @bravefastrabbit770
    @bravefastrabbit770 Год назад +6

    This guy is such a beast he even has the Nike logo tatted above his right cheekbone. Thank you for these videos, they're truly appreciated👏

  • @merdzhen_k
    @merdzhen_k 5 месяцев назад +7

    What about the fact that Next.js official documentation says that revalidation doesn’t work with generateStaticParams?
    “During revalidation (ISR), generateStaticParams will not be called again”
    And you can check that it really doesn’t revalidate if you set dynamicParams = false

    • @khoanhkhactuyetvoi
      @khoanhkhactuyetvoi 3 месяца назад

      i try revalidation with generateStaticParams in nextjs14 and it not woking, then i use revalidation in the page

    • @chiragverse
      @chiragverse 2 месяца назад +1

      Yes, it is not supported. We cannot use it as showed in video

  • @geoffrey_lee
    @geoffrey_lee Год назад +1

    Great explanation, Josh. There are definitely a lot of great uses for these examples.

  • @facundoflores4763
    @facundoflores4763 Год назад +8

    Cool, would be nice to see, on demand ISR.

    • @JuicyBenji
      @JuicyBenji Год назад +2

      Supabase had a video that had that a month or so ago

    • @joshtriedcoding
      @joshtriedcoding  Год назад +5

      Good idea, Next 13 has the option to create an API route just for revalidation that you can call whenever you'd like, for example with a webhook from your cms

  • @rojahm
    @rojahm 4 месяца назад +1

    thanks. it helped a lot.
    In addition, revalidation doesn't work for generateStaticParams, whether it's exported separetly or called for the fetch inside generateStaticParams. if you set dynamicParams to false which will only show pages with generated params you'll get a 404 for new pages after build.

  • @Daddyjs
    @Daddyjs 6 месяцев назад +1

    12:49 13:55 pretty sure you would always have to redeploy to see changes in the array you are mentioning because next js says "During revalidation (ISR), generateStaticParams will not be called again" by setting export const revalidate = 60; you are saying every cached fetch request at that page level and below should be revalidated. But generate static params will not rerun and build any new pages in the array you mention. A user would have to go to that route then next js will attempt to build that page.

  • @Nosleepguy
    @Nosleepguy Год назад +2

    we can do it in next 12. In N13, Vercel was change syntax a bit. But it's so amazing

  • @thequang9234
    @thequang9234 Год назад

    Love your channel ! Glad i found this, hope ur channel grow :)

  • @realitydesigners
    @realitydesigners Год назад

    Love your channel bro. Thanks for this! Learned something new!

  • @vishalsangole836
    @vishalsangole836 10 месяцев назад +1

    why should i use ISR if i have to revalidate pages every minute of seconds, shouldn't I just stick to SSR? and also we can use revalidate() function in SSR and i think we are good to go.

  • @Gyurmatag
    @Gyurmatag Год назад +2

    Is ISR would be great for example a dynamic user created posts blog, like a Twitter clone? Can I revalidate the cache dynamically When somebody uploads a new post?

  • @Zagoorland
    @Zagoorland Год назад +1

    I'm glad that you're using typescript by default!

  • @ikbo
    @ikbo 4 месяца назад

    is there no way to revalidate dynamically rather than timer based? So create a new static page for new user only when the new user is added rather than regenerate static pages for all users?

  • @aymenbachiri-yh2hd
    @aymenbachiri-yh2hd Месяц назад

    Thank you so much, great video

  • @rogers2934
    @rogers2934 28 дней назад

    Let's say we have 1 billion users, I don't want to generate static page for all the users but only when the user is visiting the page for the first time. Can we add to the userids only when the user visits the page?

  • @asimalqasmi7316
    @asimalqasmi7316 Год назад

    Thanks for your great videos

  • @licokr
    @licokr 9 месяцев назад

    Thank you so much, you explained every single thing. It was really helpful understanding easily. I have two questions. I set revalidate 60 seconds, when it's built, the static files will be generated. And then there are no users in 10 mins, then somebody comes to the page, does it generate users one more at this point, not every 60 seconds? If I come to think of performance, it should do work like this though.
    and another question is that does it generate all static files when a user comes in after the revalidate time? Then it means that if there are 10000 users, it generates 10000 static files.
    I'm not sure if I wrote questions correctly though, anyway, Thank you very much for the awesome video 👍

  • @rahimco-su3sc
    @rahimco-su3sc Год назад

    you videos are amazing !!! thanks

  • @rayhanislam7518
    @rayhanislam7518 Год назад +1

    So when I go for server side rendering? any example

  • @asimalqasmi7316
    @asimalqasmi7316 Год назад +2

    It is nice if you cover the state managements in NextJs with prisma in ssr.

    • @naylord5
      @naylord5 Год назад

      I second this!

    • @joshtriedcoding
      @joshtriedcoding  Год назад +1

      Not sure what exactly you mean, mind elaborating?

    • @asimalqasmi7316
      @asimalqasmi7316 Год назад +1

      I meant using Redux, Xstate or Zustand with NextJs 13 app dir
      with Prisma.
      The way to manage the state in the react server components.

    • @finenode8363
      @finenode8363 Год назад

      what if 10,000 users?

  • @lightoflifegames7227
    @lightoflifegames7227 6 месяцев назад

    I have some progress bars that show amount of money donated. I need to update ONLY AFTER SOMEONE DONATED. I think this is possible right?

  • @NOTHING-en2ue
    @NOTHING-en2ue Год назад

    i finally understand, thanks a lot ❤

  • @bwustinbweem
    @bwustinbweem Год назад

    Interesting. Love learning new things for Next

  • @soymartiinez
    @soymartiinez Год назад +1

    Now a example 👏 please.

  • @vishalsangole836
    @vishalsangole836 10 месяцев назад

    heres some quetions.
    is ISR "SSG generator" ?
    is ISR NextJS version of SSG?
    why should i be using ISR for short validation time, and why should i use ISR for long revalidation time if i can use SSG?
    if set revalidate to 3day , is that mean after every 3days new build will be generated ?

  • @AmodeusR
    @AmodeusR Год назад

    I didn't get the reson for that map, you just made a redundant code, using map in an array of one value to return an array with the same one value.

  • @user-vx7gt8ey5p
    @user-vx7gt8ey5p 7 месяцев назад

    How does ISR affect SEO?

  • @ssatriyaa
    @ssatriyaa Год назад

    When we use generatestaticparams, does loading tsx still render? Cuz when I use it in my app loading.tsx does not seem to load right after I click it.

  • @ekimdev7622
    @ekimdev7622 10 месяцев назад

    What if we have [userId]/anotherSection , [userId]/anotherSection2 , in this case we have 2 children pages under userId, if those pages fetches a data from another api in their page.tsx file(by usind userId), will all children pages also generate html on server in build time?

  • @aksxaay
    @aksxaay Год назад

    How is he getting the intellisense for the new revalidate export? I don't seem to have any way to set that up.

  • @darkdeathoriginal
    @darkdeathoriginal 9 месяцев назад

    can you do this for query params

  • @drgregoryhouse1470
    @drgregoryhouse1470 Год назад

    Can you make an video on how to deploy ISR to AWS-Amplify, I am stuck because SSG works but ISR does not. I don't seem to find any good resources on this topic. If there are, I would be happy about some links :)

  • @harrykang4956
    @harrykang4956 11 месяцев назад

    ❤❤thank you for this video

  • @jaeken
    @jaeken Год назад

    What if your data fetching requires a bearer token (which it often does) that of course changes every hour or so. I guess you cant benefit from this then? 😢

  • @user-yi7rd8gp4k
    @user-yi7rd8gp4k Год назад

    Thank you ❤

  • @mrfuture3591
    @mrfuture3591 Год назад

    video build production nextjs to hosting, please

  • @user-yi3rq7jk2r
    @user-yi3rq7jk2r 8 месяцев назад

    my nextjs app images not lazy load

  • @marufbepary100
    @marufbepary100 Год назад

    I think I done everything correctly but it is not working.
    This is meant to represent a project object.
    export default interface Project {
    name: string;
    slug: string;
    description: string;
    imageURL?: string;
    imagesList?: string[];
    repoURL?: string;
    siteURL?: string;
    articleURL?: string;
    programmingLanguage: string;
    technologies?: string[];
    type:
    | "Web Dev"
    | "Extra Web Dev"
    | "Backend Web Dev"
    | "Machine Learning"
    | "Java Assignments"
    | "Other";
    }
    Each project has its own page with its appropriate metadata.
    app/projects/[slug]
    export const generateStaticParams = async () => {
    // get all projects with metadata
    const projects = [
    ...webdevProjects,
    ...extraWebDevProjects,
    ...backendWebDevProjects,
    ...machineLearningProjects,
    ...javaAssignments,
    ...otherProjects,
    ];
    return projects.map((project) => ({ slug: project.slug }));
    };
    interface ProjectPageProps {
    params: {
    slug: string;
    };
    }
    const ProjectPage: React.FC = ({ params }) => {
    const pathname = usePathname(); // used to determine the current route
    // const params = useParams(); // retrieve the URL parameters
    const router = useRouter();
    const slug = params.slug;
    const allProjects: Project[] = [
    ...webdevProjects,
    ...extraWebDevProjects,
    ...backendWebDevProjects,
    ...machineLearningProjects,
    ...javaAssignments,
    ...otherProjects,
    ];
    const project = getProjectBySlug(slug, allProjects);
    const projectName = getNameBySlug(slug, allProjects);
    const projectTechnologies = getTechnologiesBySlug(slug, allProjects);
    const projectLanguage = getLanguageBySlug(slug, allProjects);
    const projectDescription = getDescriptionBySlug(slug, allProjects);
    let gallery = getImagesListBySlug(slug, allProjects);
    // Adds full path to images
    if (gallery) {
    gallery = gallery.map((image) => `/projects/${slug}/${image}`);
    }
    // If the project does not exist, redirect to the 404 page
    if (!project) {
    router.push("not-found");
    }...

  • @finenode8363
    @finenode8363 Год назад +1

    What if 10,000 users?

    • @vaggelis_best
      @vaggelis_best 2 месяца назад

      In this case, dynamic generation makes more sense (as he said at the end). I think tha this feature can prove useful for things that are not overly to many & get shown to many users, like the posts of a blog fetched from another website

  • @seehgom
    @seehgom Год назад

    This is great for small size user base

    • @joshtriedcoding
      @joshtriedcoding  Год назад +1

      Next has no problem with that, just becomes a trade-off between build times and UX

    • @julien_sublaunch
      @julien_sublaunch Год назад

      @@joshtriedcoding do you know the build time for 1000 pages as linktree page for example? To have an idea, if NextJs gave some infos about this. Thanks for the value btw!

  • @chrishabgood8900
    @chrishabgood8900 Год назад

    Is there a way to push data from the server into the system instead of polling?

  • @nubian_goat
    @nubian_goat Год назад

    Yes we need example for this boss. Can you show it how we can connect this with sanity. I want to make blog site

    • @nubian_goat
      @nubian_goat Год назад

      With next auth so users can sign in and post a comment as well

    • @nubian_goat
      @nubian_goat Год назад

      Also with ads components. Thanks

    • @nubian_goat
      @nubian_goat Год назад

      With carousel in the homepage 😅😂

  • @user-ud4bj9vc7l
    @user-ud4bj9vc7l Месяц назад

    so... what about a real world ?

  • @filipfedorisin3457
    @filipfedorisin3457 Год назад

    Is it really best practice to use this for users? Lets just say that you have thousands of users, then you need to cache all of those routes. Seems pretty demanding. I think that to remove latency for userId specific pages the better practice is SSR or even client side fetch as the user does not care much about speed there. I would even say that it is safer. But for high traffic routes like blogs or eshop products etc the ISR would be more appropriate.

    • @joshtriedcoding
      @joshtriedcoding  Год назад +1

      As I said towards the end, it is a trade-off between build time and UX. It also depends on the nature of your dynamic route, whether it handles users, documents, posts ... Lots of factors play into the decision whether to use ISR, SSG or SSR pages

    • @filipfedorisin3457
      @filipfedorisin3457 Год назад

      @@joshtriedcoding Ah yes, next time I will make sure to watch until the end, great videos tho. Could you also make something about rate limiting and throttling for the T3 stack?

    • @joshtriedcoding
      @joshtriedcoding  Год назад +1

      @@filipfedorisin3457 Cheers, good idea

  • @universe_decoded797
    @universe_decoded797 Год назад

    Put off the nextjs moonboi glasses inmediately, you’re missing out on nuxt3

  • @TheRealSmexy
    @TheRealSmexy Год назад

    do you have discord kind sir?