As someone who’s been mildly critical of some of your videos, this video is spot on. I’m sick of explaining what you just explained here, and I’m going to direct people here from now on.
at this point of my development journey ( very new here , self taught 8 ish months in ) . your content is exactly what i needed, thank you! it feels like this is a conversation/explanation that i would have or want to have when apart of a team. very much “in the field” vibes. helping tie in the knowledge of tools & how to think of developing with them ! stay safe. thanks again !
I love your style of explaining and you really seem to know what you are talking about, including all the other videos you made about next. You saved me probably tons of hours of research and I am really thankful for that!
Thanks Theo!! I've been reluctant to adopt Next and other SSR tools because I didn't understand them. Now that I've heard your explanation I can see how cool Next is 👍
I was the same man, then I tried it and found out that it is actually kind of a wrapper around your React application which lets you render portions of it on the server. It can seem as a lot when you read or hear about it, but when you actually start building with it following the docs, it all makes sense and it's not nearly as complicated as I thought before. Having a kind of solid understanding of React helps though, you can then easily differentiate Next from React parts.
You forgot to mention that because of nextjs's server we can also create a minimal backend api, which is extremely useful for small fullstack projects. It is also something that only nextjs has, comparing to vite and CRA.
The best lectures I've seen were given by professors using a blackboard. It just occurred to me that you archive the same greatness by using Excalidraw! Amaizingly clear and useful content! Thanks a lot!
Thanks for this. Will just send it to all my colleagues who are asking me over and over again why I almost always choose NextJS. The cons are no cons, as I can opt out easily but still getting all the benefits especially as you mentioned the f##!@# developer experience, live reload and the option to have everything without hacking it on my own.
I think the video title should be "How SSR/SSG works?". Also I would argue that a Next app is a multi-page application because the client still requests a new page when you visit a new route, it's just that the next router and hydration patterns makes it "feel like a SPA". It's not really a SPA. Anyways good video.
It is an SPA. _app only mounts once and handles all page routing so _app is the single page. NextJs just handles it quite cleverly making everything seem less. But you are right, the title of the video was confusing since I was expecting a deep dive into how the framework was built.
@@rico454 What you said is true and yes I think the terms are usually juggled around. Although it looks like MDN defines a SPA as an application which loads a single document page and updates that document's body using javascript. You can look it up. AFAIK it's neither of those 2, it's a Hybrid react framework.
@@sidwebworks9871 Thats what i think of when I hear SPA as well. So I'm a bit confused still. If that's not how nextjs works, then its just a MPA, that becomes SPA after html is requested, why not just become a static page at this point ? Isn't being SPA the biggest selling point of... well single page applications ? Because it makes navigating through pages so much faster. But next loses that ability by requesting the server side rendered html at every route change. I feel so dumb for not understanding the point of nextjs but im also still a beginner
@@sidwebworks9871 Maybe I’m confused but doesn’t Next adhere to that criteria? _app is loaded once and everything else is loaded with javascript, whether it’s static or SSR? Well that’s how I assume it works, I might be wrong
So, great video, especially for someone who's new to Next.js but not new to React. What I didn't really appreciate though is at the end of this when you said some people are asking some dumb and stupid questions - really?! Awful thing to say to your viewers when you should be encouraging them, and for that, I won't be subscribing to your channel (but that probably won't bother you). No question is a dumb question - no wonder people get scared asking questions and speaking up when it matters the most!
Thanks very much! Next.js makes a lot more sense now. I'm pretty new to React (coming from Angular). I understand that Next is more opinionated, but are there any architectural considerations and/or patterns that would be used in a typical React app that are less effective or more within the realm of an anti-pattern when applying in Next. I'm looking at those returned server props in the script element and thinking that with great power comes great responsibility.
Great video as always! I’ve only been working as a software eng for two years, so I’m always listening to your VODs! I was wondering if you could talk about mobile app development a bit more in depth (I saw your Code Wars working with Flutter, but I’d love to see you take a deep dive on React Native)
So i've gone from; 1. Server side rendering (ASP.Net Web Forms) to 2. Client side rendering (jQuery/Ajax JSON/JSONP ASP.Net & WCF Restful service) to 3. Server side rendering (ASP.Net MVC) to 4. Client side rendering (AngularJS/Angular/React/Web Components) 5. ..... i'll wait this cycle out. See you guys when client side rendering is the hot topic again :)
How do you learn stuff like this? I know I learned it from you but how do you find resources to learn things like this. Some apps like Next have documentation that is extremely insightful but nowhere in the React docs would I have learned how react actually works.
the only benefit of SSR compare to a SPA with router level prefetching is the real 1st time load, right after, SSR has no benefit, and might make your app slow, depends on how you setup your infranstruture. Browser caches all the assets for you, no more downloading, that page rendering is instant, you just need to solve the data prefetching part. not to mention the unsolveable TTI problem in SSR approach, you have to load js for SSR app too. for highly interactive app, SPA is sigficantly easier to build than SSR. Give the illusion of the page is interatable while it is just a fake HTML from SSR is a disaster for low speed network speed, learnt it the hard way. What most SaaS needs is not fully SSR, is SSG for non-auth part and SPA for after-auth part, better to deploy your frontend on the edge with static assets ONLY. Scales way better than blindly deploy your backend "function" on the edge while your DB is not, not to mention, your frontend app deploys on Vercel and SSR over there.... completely performance disasterer...
Thanks for sharing, you have mentioned that when browser requests to next server, next will execute getServerSideProps and then react will use those props. However, we can use getStaticPaths function to serve all dynamic routes pre-rendered HTML in built time. In that case, when a user requests to next server, will next server execute some react or just sending the pre-rendered HTML in built time instead of runtime?
I REALLY need a perfect SEO. I have just dumped NuxtJs which was terrible and I am in love with NextJS. Even tho it will take me a couple of months to rewrite I already see it will be smoother overall.
Explain how next js is a spa? If I request a different server side page then it has to go to the server right? The entire app isn’t loaded on the client?
I'm confused - I've been following along with your T3 Stack Tutorial (I'm up to the part where we show user details in each tweet) and the page is definitely hydrating on load, the initial HTML is just a skeleton... Which seems to contradict what this video is saying?
Hi everyone, am I missing a part, or is this video simply explaining that NextJS will take care of the server-side processing through getServerSideProps and return the rendered HTML as a result. After the HTML has been returned to the client, the next part is entirely in react.
Many newer developers are running in development. Local host and all that, personally I have made a call to local storage in dev mode, and the program works fine. Will that not work in production?
@@eltyo340 unsure, I’m more of a backend developer and most of my apps have heavy backend logic so I usually need a separate backend and frontend, and even if I ran next with a separate BE, I’d need to hide the user refetching on page loads sadly
@@christianwdev I think if you cached the /me api route on the front-end, you'd only need to display a loading state when the first page of your app loads, then on page transitions, you fetch the user data from local storage. If you have a graphql back-end, data fetching libraries (on the frontend) like urql or react-query handle the caching automatically for you.
Next can't do all of the things that can be in "this is next". The server could serve the original page with some parts that are based on cookies, etc.
I am still trying to wrap my mind about what happens when page contains components that can not be rendered on server, how does all that gets stitched up. I guess at best there would be holes, or place holders for client side to fill in?
I've been learnig NEXTjs for almost a week reading the Pages Router docs, and there's something that still doesn't make sense in my head.... When a page that was rendered on the server gets to the client as a Loading state or as an UI skeleton, does that mean that the server have a "correct" but empty HTML version of what the user gets after the client fetches and loads the data? Only then the user gets the 2nd correct but complete version of the same HTML page? Idk if that's clear enough, hopefully it is..
we have nest js backend and are looking to move to next js on the front end (from CRA). Server components seem really cool and powerful, but I am trying to wrap my head around how they can be used with an API and without bypassing guards. Any tips?
So if we don't use getServerSideprops it will still generate static html for us but for data fetching it just works like Client side React. Am I correct?
How does NextJS handle links to other pages? Will the page its going to act like a normal react app (instant switch) if there is no server side rendering? What if the page its going to is static?
As someone who’s been mildly critical of some of your videos, this video is spot on. I’m sick of explaining what you just explained here, and I’m going to direct people here from now on.
same
Yeah .. Im an SEO guy trying to explain how to deploy JS correctly ... this makes my work with engineering teams a lot easier ... thank you!
at this point of my development journey ( very new here , self taught 8 ish months in ) . your content is exactly what i needed, thank you!
it feels like this is a conversation/explanation that i would have or want to have when apart of a team. very much “in the field” vibes. helping tie in the knowledge of tools & how to think of developing with them !
stay safe. thanks again !
You dropped this video at the perfect time! My team is starting a new application and we're considering nextjs and this was an awesome introduction :)
I love your style of explaining and you really seem to know what you are talking about, including all the other videos you made about next. You saved me probably tons of hours of research and I am really thankful for that!
14:00 The card preview has been disabled for everyone since April 2022 because the styling of the validator was different from the actual website
Thanks for sharing! I suddenly started seeing this as well recently on my sites and was wondering what broke lol
This is super good to know thank you
Former technical SEO, now developer. This is a great rundown to share this concept with others.
Loving the new production style of video editing Theo! Just the inclusion of a "Coming Up" section is a great addition!
Thanks Theo!! I've been reluctant to adopt Next and other SSR tools because I didn't understand them. Now that I've heard your explanation I can see how cool Next is 👍
I was the same man, then I tried it and found out that it is actually kind of a wrapper around your React application which lets you render portions of it on the server. It can seem as a lot when you read or hear about it, but when you actually start building with it following the docs, it all makes sense and it's not nearly as complicated as I thought before. Having a kind of solid understanding of React helps though, you can then easily differentiate Next from React parts.
I missed like half of this live video so glad the video came out, this might be a personal favorite
You forgot to mention that because of nextjs's server we can also create a minimal backend api, which is extremely useful for small fullstack projects. It is also something that only nextjs has, comparing to vite and CRA.
This is amazing depth and details. Right down my alley. I like your style. Thank you.
The best lectures I've seen were given by professors using a blackboard. It just occurred to me that you archive the same greatness by using Excalidraw!
Amaizingly clear and useful content! Thanks a lot!
The way I understood it is next js is aiming to do what Angular does. Thanks for the content.
No?
Thanks for this. Will just send it to all my colleagues who are asking me over and over again why I almost always choose NextJS. The cons are no cons, as I can opt out easily but still getting all the benefits especially as you mentioned the f##!@# developer experience, live reload and the option to have everything without hacking it on my own.
This is absolutely important background-knowledge! Fantastic explanation! Thank you! 😀👍
We really need this for app router as well. Especially how navigation works!
The intro music and clip-of-content before the explanation video starts is gold. You should start doing this again.
That is a beautiful explanation, thank you, Theo!
22:13 basically React explained in one phrase 😂
ty Theo, just what I needed since I've been playing with Next a lot these days.
The sun is energy.
There is life on Earth.
This video slaps.
We all will pay taxes.
These are nothing but straight facts.
Great content Theo!
Awesome, would love the same for remix run!
I think the video title should be "How SSR/SSG works?".
Also I would argue that a Next app is a multi-page application because the client still requests a new page when you visit a new route, it's just that the next router and hydration patterns makes it "feel like a SPA". It's not really a SPA.
Anyways good video.
It is an SPA.
_app only mounts once and handles all page routing so _app is the single page.
NextJs just handles it quite cleverly making everything seem less.
But you are right, the title of the video was confusing since I was expecting a deep dive into how the framework was built.
@@rico454 What you said is true and yes I think the terms are usually juggled around.
Although it looks like MDN defines a SPA as an application which loads a single document page and updates that document's body using javascript.
You can look it up.
AFAIK it's neither of those 2, it's a Hybrid react framework.
@@sidwebworks9871 Thats what i think of when I hear SPA as well. So I'm a bit confused still. If that's not how nextjs works, then its just a MPA, that becomes SPA after html is requested, why not just become a static page at this point ? Isn't being SPA the biggest selling point of... well single page applications ? Because it makes navigating through pages so much faster. But next loses that ability by requesting the server side rendered html at every route change.
I feel so dumb for not understanding the point of nextjs but im also still a beginner
@@sidwebworks9871 Maybe I’m confused but doesn’t Next adhere to that criteria? _app is loaded once and everything else is loaded with javascript, whether it’s static or SSR?
Well that’s how I assume it works, I might be wrong
you deserve a Nobel Peace prize for this youtube channel
Thanks a lot. So good to learn this things not by using documentation, but by watching nice RUclips channel with a cup of tea :)
We needed a video like this 🙏
What a gem of a video! Thanks for this.
Amazing work, helped me fix small confusions
3:40 Shift-Opt-drag your line to duplicate on the same position and drag it on the vertical/horizontal axis 📎📄
You explained it so easily. Thanks for the effort.
Uff what an explanation! Really good video!
Dude, you are the best in making this voodoo technologies accessible to n00bs, thx!
i watched this video when it first came out and again last night. got much more out of it after getting my hands dirty with Next
great video
So, great video, especially for someone who's new to Next.js but not new to React. What I didn't really appreciate though is at the end of this when you said some people are asking some dumb and stupid questions - really?! Awful thing to say to your viewers when you should be encouraging them, and for that, I won't be subscribing to your channel (but that probably won't bother you). No question is a dumb question - no wonder people get scared asking questions and speaking up when it matters the most!
Hey Theo. Great video as always. Can you make a video regarding what libraries/ packages are you using at ping to solve problems that you faced?
I had a hard laugh on "servers dont have windows because they run linux" :D excited about t3 stack
Thanks very much! Next.js makes a lot more sense now. I'm pretty new to React (coming from Angular).
I understand that Next is more opinionated, but are there any architectural considerations and/or patterns that would be used in a typical React app that are less effective or more within the realm of an anti-pattern when applying in Next.
I'm looking at those returned server props in the script element and thinking that with great power comes great responsibility.
One of the huge things that is overlooked with nextJs is the build tools
Really Love All Your Videos ❤️
Great video! You just earned a sub theo.
Very nice explanation, Thank you...!
You're an amazing person!
Great quality content
Nice explanation. Thank you.
You should do the same for the new version....
awesome video! Thanks 👍🏻
I will also use this video to answer questions
awesome video, wondering which software you use to record the screen and your face?
Great video as always! I’ve only been working as a software eng for two years, so I’m always listening to your VODs!
I was wondering if you could talk about mobile app development a bit more in depth (I saw your Code Wars working with Flutter, but I’d love to see you take a deep dive on React Native)
Great explanation! Just not gonna ask any questions to avoid being outright stupid.
Valuable content, thank you
Thanks for this helpful video.
genius explanation, thanks!
Thank you for this!
great explanation
Love the thumbnail 🤣😍
Amazing explanation 🔥🔥
This is soo good. Thanks !
amazing video
probably, I haven't finished watching it yet
my hypothesis was correct
(I watch at 2x speed)
So i've gone from;
1. Server side rendering (ASP.Net Web Forms) to
2. Client side rendering (jQuery/Ajax JSON/JSONP ASP.Net & WCF Restful service) to
3. Server side rendering (ASP.Net MVC) to
4. Client side rendering (AngularJS/Angular/React/Web Components)
5. ..... i'll wait this cycle out. See you guys when client side rendering is the hot topic again :)
I would say this cycle is a hybrid. Server or client side depending on what you need.
when I see your videos I feel I am being assigned homework... "if you wanna get good at this you better watch his video"
Would've been nice if you had explained how Nextjs works like with bundle splitting etc.
React = interactive sites
Next = HTML correct for sites as soon as they load
Hey Theo, video on upgrading T3 app to use the app directory update of nextjs next? Why? Just because!
How do you learn stuff like this? I know I learned it from you but how do you find resources to learn things like this.
Some apps like Next have documentation that is extremely insightful but nowhere in the React docs would I have learned how react actually works.
The source code (easier said than done)
Great job man!!
Good video editing
sick painting
the only benefit of SSR compare to a SPA with router level prefetching is the real 1st time load, right after, SSR has no benefit, and might make your app slow, depends on how you setup your infranstruture. Browser caches all the assets for you, no more downloading, that page rendering is instant, you just need to solve the data prefetching part.
not to mention the unsolveable TTI problem in SSR approach, you have to load js for SSR app too. for highly interactive app, SPA is sigficantly easier to build than SSR. Give the illusion of the page is interatable while it is just a fake HTML from SSR is a disaster for low speed network speed, learnt it the hard way.
What most SaaS needs is not fully SSR, is SSG for non-auth part and SPA for after-auth part, better to deploy your frontend on the edge with static assets ONLY. Scales way better than blindly deploy your backend "function" on the edge while your DB is not, not to mention, your frontend app deploys on Vercel and SSR over there.... completely performance disasterer...
your videos are awesome❤
Thanks for sharing, you have mentioned that when browser requests to next server, next will execute getServerSideProps and then react will use those props. However, we can use getStaticPaths function to serve all dynamic routes pre-rendered HTML in built time. In that case, when a user requests to next server, will next server execute some react or just sending the pre-rendered HTML in built time instead of runtime?
Please make a t3 stack SERIES ... explaining the what is what. I am so confused.
ask better questions man
TechWithTom explains it
I REALLY need a perfect SEO. I have just dumped NuxtJs which was terrible and I am in love with NextJS. Even tho it will take me a couple of months to rewrite I already see it will be smoother overall.
Just awesome
dang, solid video!
Explain how next js is a spa? If I request a different server side page then it has to go to the server right? The entire app isn’t loaded on the client?
Your voice sound really arrogant but you really are a good teacher which negate the latter hahaha thank you so much
I'm confused - I've been following along with your T3 Stack Tutorial (I'm up to the part where we show user details in each tweet) and the page is definitely hydrating on load, the initial HTML is just a skeleton... Which seems to contradict what this video is saying?
Hi everyone, am I missing a part, or is this video simply explaining that NextJS will take care of the server-side processing through getServerSideProps and return the rendered HTML as a result.
After the HTML has been returned to the client, the next part is entirely in react.
Many newer developers are running in development. Local host and all that, personally I have made a call to local storage in dev mode, and the program works fine. Will that not work in production?
the only thing I dislike about NextJS is their default routing feature as I enjoy the benefit of react-router-dom so I always disable it.
What do you dislike about NextJS default routing?
@@eltyo340 Guess I didn't understand how to pass my user props from one page to another like CRA and had to always refresh making it feel sluggish.
@@christianwdev hmm fair enough. Would caching fix that?
@@eltyo340 unsure, I’m more of a backend developer and most of my apps have heavy backend logic so I usually need a separate backend and frontend, and even if I ran next with a separate BE, I’d need to hide the user refetching on page loads sadly
@@christianwdev I think if you cached the /me api route on the front-end, you'd only need to display a loading state when the first page of your app loads, then on page transitions, you fetch the user data from local storage. If you have a graphql back-end, data fetching libraries (on the frontend) like urql or react-query handle the caching automatically for you.
Just Great!
GREAT GREAT GREAT VIDEO
How nextJS optimizes application for SEO? so if it's steel spa why we can't have good seo with cra?
I shared this with my co op student! Can you make the same for Astro?
Next can't do all of the things that can be in "this is next". The server could serve the original page with some parts that are based on cookies, etc.
jesus christ... I finally understand
I am still trying to wrap my mind about what happens when page contains components that can not be rendered on server, how does all that gets stitched up. I guess at best there would be holes, or place holders for client side to fill in?
I've been learnig NEXTjs for almost a week reading the Pages Router docs, and there's something that still doesn't make sense in my head.... When a page that was rendered on the server gets to the client as a Loading state or as an UI skeleton, does that mean that the server have a "correct" but empty HTML version of what the user gets after the client fetches and loads the data? Only then the user gets the 2nd correct but complete version of the same HTML page?
Idk if that's clear enough, hopefully it is..
I guess I would say "incomplete" rather than "incorrect" for the initial html.
I wanna see if its possible to have React SSR with something like Spring boot
we have nest js backend and are looking to move to next js on the front end (from CRA). Server components seem really cool and powerful, but I am trying to wrap my head around how they can be used with an API and without bypassing guards. Any tips?
Do you mean bringing client credentials, such as tokens, when the server component making requests?
kinda bummed that the actual How it Works is only 2 minutes and then it's the same SSR vs CSR coverage
So if we don't use getServerSideprops it will still generate static html for us but for data fetching it just works like Client side React. Am I correct?
24:31 I disagree, otherwise how come next.js ships bundle that is like 2x the size of comparable React+vite SPA?
Why some people still use firestore on SSR? What are the benefits?
How does NextJS handle links to other pages? Will the page its going to act like a normal react app (instant switch) if there is no server side rendering? What if the page its going to is static?
Servers don't have Windows, servers run Linux🤣
Amazing
The font is hard to read on an 8 inch tablet. Can you please switch to some sans serif font?
What about "how Next 13 ACTUALLY WORKS ?"