Тёмный

Learn NextJS's Superpower ISR in 15 Minutes 

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

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

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

 

10 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@livecode247
@livecode247 Год назад
NextJS SSR, SSG, ISG is probably one of the most timetaking thing to understand. Loved the video!
@joshtriedcoding
@joshtriedcoding Год назад
Really is, took me a long time myself. Cheers man
@bravefastrabbit770
@bravefastrabbit770 Год назад
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 месяцев назад
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 4 месяца назад
i try revalidation with generateStaticParams in nextjs14 and it not woking, then i use revalidation in the page
@chiragverse
@chiragverse 3 месяца назад
Yes, it is not supported. We cannot use it as showed in video
@geoffrey_lee
@geoffrey_lee Год назад
Great explanation, Josh. There are definitely a lot of great uses for these examples.
@rojahm
@rojahm 5 месяцев назад
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.
@vishalsangole836
@vishalsangole836 10 месяцев назад
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.
@facundoflores4763
@facundoflores4763 Год назад
Cool, would be nice to see, on demand ISR.
@JuicyBenji
@JuicyBenji Год назад
Supabase had a video that had that a month or so ago
@joshtriedcoding
@joshtriedcoding Год назад
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
@Gyurmatag
@Gyurmatag Год назад
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?
@Daddyjs
@Daddyjs 7 месяцев назад
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.
@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!
@Nosleepguy
@Nosleepguy Год назад
we can do it in next 12. In N13, Vercel was change syntax a bit. But it's so amazing
@ikbo
@ikbo 5 месяцев назад
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?
@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?
@rogers2934
@rogers2934 Месяц назад
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?
@lightoflifegames7227
@lightoflifegames7227 7 месяцев назад
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?
@rayhanislam7518
@rayhanislam7518 Год назад
So when I go for server side rendering? any example
@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.
@aymenbachiri-yh2hd
@aymenbachiri-yh2hd 2 месяца назад
Thank you so much, great video
@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 ?
@Zagoorland
@Zagoorland Год назад
I'm glad that you're using typescript by default!
@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?
@licokr
@licokr 10 месяцев назад
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 👍
@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? 😢
@asimalqasmi7316
@asimalqasmi7316 Год назад
Thanks for your great videos
@bwustinbweem
@bwustinbweem Год назад
Interesting. Love learning new things for Next
@rahimco-su3sc
@rahimco-su3sc Год назад
you videos are amazing !!! thanks
@NOTHING-en2ue
@NOTHING-en2ue Год назад
i finally understand, thanks a lot ❤
@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"); }...
@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 Год назад
❤❤thank you for this video
@seehgom
@seehgom Год назад
This is great for small size user base
@joshtriedcoding
@joshtriedcoding Год назад
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!
@asimalqasmi7316
@asimalqasmi7316 Год назад
It is nice if you cover the state managements in NextJs with prisma in ssr.
@naylord5
@naylord5 Год назад
I second this!
@joshtriedcoding
@joshtriedcoding Год назад
Not sure what exactly you mean, mind elaborating?
@asimalqasmi7316
@asimalqasmi7316 Год назад
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?
@chrishabgood8900
@chrishabgood8900 Год назад
Is there a way to push data from the server into the system instead of polling?
@julien_sublaunch
@julien_sublaunch Год назад
Yes, with revalidate
@user-yi7rd8gp4k
@user-yi7rd8gp4k Год назад
Thank you ❤
@darkdeathoriginal
@darkdeathoriginal 10 месяцев назад
can you do this for query params
@soymartiinez
@soymartiinez Год назад
Now a example 👏 please.
@finenode8363
@finenode8363 Год назад
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
@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 Год назад
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 Год назад
@@filipfedorisin3457 Cheers, good idea
@user-yi3rq7jk2r
@user-yi3rq7jk2r 8 месяцев назад
my nextjs app images not lazy load
@mrfuture3591
@mrfuture3591 Год назад
video build production nextjs to hosting, please
@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 2 месяца назад
so... what about a real world ?
@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?
Далее
10 common mistakes with the Next.js App Router
20:37
Просмотров 210 тыс.
How Did I Not Know About These React Hooks Before?
13:48
What is CSR SSR SSG and ISR
16:57
Просмотров 54 тыс.
The Untold Story of VS Code
12:42
Просмотров 10 тыс.
Fetching Data Doesn't Get Better Than This
6:58
Просмотров 114 тыс.
What is Incremental Static Regeneration? (ISR)
8:31
Просмотров 16 тыс.
Loading Your React Data Like This is Awesome
13:27
Просмотров 109 тыс.
Next.js 15 Is Here (Vercel Ship Breakdown)
19:34
Просмотров 100 тыс.
Your NextJS App is Too Big
14:16
Просмотров 63 тыс.
Performance in React and Next.js (Lydia Hallie)
16:12
When Did NextJS Routing Become so Advanced??!
8:02
Просмотров 47 тыс.