Do you REALLY need SSR?

  Рет қаралды 155,260

Theo - t3․gg

Theo - t3․gg

Жыл бұрын

People kept asking if they needed Server Side Rendering so I made a video about why they do. In depth on React Server Components, Next.js, Remix and more. Lmk what you think!
ALL MY VIDEOS ARE POSTED EARLY ON PATREON / t3dotgg
Everything else (Twitch, Twitter, Discord & my blog): t3.gg/links
S/O Ph4seOne for the awesome edit 🙏

Пікірлер: 372
@frostmichael8360
@frostmichael8360 Жыл бұрын
Even for devs who experiment NextJs/SPA/SSR since many years, the level of understanding and the level of pedagogy is so worthfull !! Thank you very much \o/
@serge9941
@serge9941 Жыл бұрын
excellent, this certainly is one of your best breakdowns so far . I've been following for nearly a year now, just wanted to let you know that this kind of content is what makes you stand out (for me)
@PsychoGod9898
@PsychoGod9898 Жыл бұрын
I think there are a lot of valid use cases where SSR totally makes sense. And I am happy that we have Next and React SSC. But also in practice: a lot of React applications are behind a login mask, should never be crawled and have a lot of interaction. For this kind of app, I still prefer a fully client side rendered approach as it is much simpler to code, maintain and host. If the performance of the users devices is of no concern, I don't see any downsides. And I also prefer having a slightly longer loading time but seeing some loading spinners that tell the users what is happening instead of just having a blank page
@MyPlanetIsPluto
@MyPlanetIsPluto Жыл бұрын
What does SSC stand for?
@PsychoGod9898
@PsychoGod9898 Жыл бұрын
@@MyPlanetIsPluto I meant React Server Components. One S to much...
@thiagoelav633
@thiagoelav633 Жыл бұрын
correct me if im wrong, but SSR its a good solution for some kind of blog, where you want some kind of dynamic data in the site, but you dont need to fetch api and reach the database everytime a users enters the site, so you use next to generate a html with all the data from the api once and give this to the user instead, but you do it in some way, that when you change the content of the database, the html is regenerated with the new info, so this way you dont unecessary overload the usage of your api and db. and thats the only use i can think of, a web site where there is a lot data that only the admin changes and few to none data that the users change. please, anything that i said wrong or understanded wrong, just tell me, im just on the begining of my learning, and first saw about next last week
@thiagoelav633
@thiagoelav633 Жыл бұрын
and if there is other solution for this "blog" problem, please tell me, i need to know how not to overload the db
@puopg
@puopg 11 ай бұрын
I agree with this, I think as engineers, we need to factor in the context in which we make certain technical decisions. What works for one use case may not be needed or good for another.
@zangetsu370
@zangetsu370 Жыл бұрын
I think is worth mentioning that in the SSR model, after hydratation, your page can do API calls and update the UI using the returned JSON, no need of a page refresh. Something similar to what we used to do in the old days using ajax and jquery.
@masterdr1
@masterdr1 Жыл бұрын
exactly, MultiPage Server paradigm was is taking too much time until was generate the page; the main point was multiple Time reduce to Render the PAGE: 1) multiple API vs one huge payload. (ms vs seconds) ; is good to have multiple API calls (~`00 ms per API call) 2) Show something Fast until you load more data; MultiPage Server was waterfall wait until the page is REady and a big SPINEER to see; Which direction are we going: 1 ) SmartPhone octacore with 6 GB RAM: 2) 5G connection and you are telling me is better to have one HUGE Payload ?
@nezukovlogs1122
@nezukovlogs1122 Жыл бұрын
My Cold Take - What happened IMO was that Fully client side app's where a huge blow to the cloud/hosting providers as now all the rendering process is done on client side and no server is used, expected for just apis. So, what they do? They started creating Meta frameworks which uses Server side rendering also so that, server is also used in generating pages, and that increases their revenue.
@frozetkot4286
@frozetkot4286 Жыл бұрын
Dude!!!🤯🤯🤯 I know you are joking but these makes so much sense
@ludwig8841
@ludwig8841 Жыл бұрын
they don't just create this meta frameworks to solve some SEO problems, but they are actually pushing hard towards SSR at the point that react docs only recommend using a SSR framework to build every application. Next, in turn, does not even support CSR officially.
@slaapt
@slaapt Жыл бұрын
There are other valid reasons for SSR. Imagine you're a facebook or a google or a twitter. Being fast actually helps a lot in maintaining market share. Increasing load times by a few hundred milliseconds tanks user interactions. Now as your site increases in complexity, and people's phones aren't always the newest of the new, it'll take up increasing amounts of their hardware to deal with your site. Which might make it slow on older hardware, and ripe for a competitor to come in. But if you do SSR you can get some big servers that are guaranteed decent response times and the customer's hardware only needs to render stuff. Now even the older phones can deal with your site in acceptable time frames. Which increases potential market share. Before you go "they can just install the app" remember that some people don't want the app that hovers up a ton of data. But the company does still want the data site users provide them.
@dipanjanghosal1662
@dipanjanghosal1662 10 ай бұрын
@@slaapt with 5g incoming and ever increasing power of devices, response times will remain just fine. They wanted the servers to be used. That's the truth
@victorlongon
@victorlongon 10 ай бұрын
​@@dipanjanghosal1662I agree with you. It always the same talk about performance and how "slow" shipping some mbs of data are bad. Come on
@abrudner
@abrudner Жыл бұрын
This is awesome. I’ve seen all of these models on various websites but seeing how they work out in these block diagrams makes it super easy to understand. You’re a great teacher Theo! Knowing how to break down a complicated topic into easy to understand chunks is an art and a skill and you have both.
@mythicalj891
@mythicalj891 11 ай бұрын
which diagram app is that?
@somedude6420
@somedude6420 7 ай бұрын
​@@mythicalj891looks like excalidraw
@SeanMcQuaidCode
@SeanMcQuaidCode Жыл бұрын
Man, you are putting out some BANGERS more recently. Keep up the great work, appreciate what you do Theo!
@jjrise
@jjrise Жыл бұрын
ugh I love these excalidraw videos... thanks for the effort on these, unbelievably helpful!
@YoannMaingon
@YoannMaingon Жыл бұрын
The explanation about Single Page App, is not fair. For Business Web Apps (not public facing websites), users will access the website everyday, if it takes 2, 5, 10 secs to load on the first access it is not a problem at all. Js is cached and the website is fast to load every other time. I have got webapps for which users actually never reload the page for a full day of work.
@odra873
@odra873 Жыл бұрын
Yeah I think there are way more Business internal production spa than public ones. Nobody cares there about 0kb js or edge
@SkywalkerWroc
@SkywalkerWroc Жыл бұрын
Not sure he even understands business cases for SPA. Theo seems very ignorant of the web dev world outside of the domains he personally worked on.
@HHJoshHH
@HHJoshHH 7 ай бұрын
Ty so much for helping me learn and grow, Theo! Love your content. Definitely subbed with notifications set to all. When I get a job I’ll be able to be a greater value to your channel but….im working hard to stay organized and on task.
@kn-he1ik
@kn-he1ik Жыл бұрын
As much as there was a trend of spa, it seems that the current trend of SSR is in progress. I think the time it takes for spa to actually load is overstated. With technologies like module federation, speed is not an issue. SEO is definitely an advantage of ssr. Don't burden the server too much. The client's energy consumption is entirely up to the user, but Server usage is money. $
@j2devstudio
@j2devstudio 11 ай бұрын
Your explanations (in tandem with Excalidraw illustrations) are the best I've ever seen. Thank you.
@ashishpandeyone
@ashishpandeyone Жыл бұрын
A very detailed video and totally on point explanation. Yes, SSR looks great and definitely improves SEO and UX. The problem now though is you totally give up all chances of page caching when under any decent load. Most apps that are behind a paywall or require mandatory user authentication and authorisation do not need to be SSR. And while nobody is considering this but when you're serving DOM from a server, you're serving a lot of redundant data, using a lot of TCP connections and burning a lot of compute and IO to read files and serve them. SSR IS EXPENSIVE AND COSTLY and unfortunately no one is saying that. For blogs, public content, etc. SSG is still the best option and in case the page requires some dynamic data to be included, make it ISR and let the client request the dynamic data that it needs. Our mobile devices aren't weak, our networks aren't unreliable but our cloud costs are always increasing. SSR, when unnecessary, just adds to this cost. Caching is your friend and caching JSON will be easier / simpler and much more scalable than SSR DOM. Even for the most data intensive applications out there, ISR + HTTP Polling / GraphQL subscriptions is still the best way to have a great UX today. SSR is a great piece of tech and React's concurrent mode along with suspense makes it very scalable too but unless you've 10k dynamic layouts with lot's of decision making and need realtime sync renders, don't use it!
@adaliszk
@adaliszk Жыл бұрын
I find it funny how we got a full circle where we started server-side rendered templates that were updated through Ajax, moved to entirely client-side rendering, and now we are returning to rendering on the server side again. I am unsure why you are saying that we re-rendered everything on a page with Ajax. While there were certainly ones who did, a significant revolution with Ajax was that you could render portions of your page and replace the result within containers. EDIT: The old solution was not ideal, but the concept worked overall. The new tools are definitely better, especially when we look at possibly the next steps with things like Qwik/Yew and similar, combining the server and client to deliver an experience.
@hugowride4582
@hugowride4582 Жыл бұрын
The difference with SSR as Theo points out is now the framework, language and even components for the server and client rendering are now the same. Previously they would normally be different say PHP for initial render and JS for client updates. You can definitely do it, but it’s not as slick and integrated as the same thing for both parts.
@romankoncek150
@romankoncek150 Жыл бұрын
Yes, now you can do pretty much exactly the same as you did with ajax back then, but using single programming language, single paradigm and less boilerplate.
@adaliszk
@adaliszk Жыл бұрын
@@romankoncek150, ​ @Hugo Wride, Indeed. It is an improvement for sure! It just not as if we had not have the concept before, we just have better tools to execute it.
@kklowd
@kklowd Жыл бұрын
Yeah we're going back to our roots. Building back Java but the new modern and modular Java for the web 😂
@SkywalkerWroc
@SkywalkerWroc Жыл бұрын
@@hugowride4582 Yea, and we're bound to return to having a different language as well, as modern PHP and Java offer better performance for SSR than Node or even Deno.
@bbubbu21
@bbubbu21 Ай бұрын
Describing the traditional SSR and next.js's SSR model separately was so helpful for me getting where I was stuck at! It was so helpful. Thanks.
@christian-schubert
@christian-schubert Жыл бұрын
This is legitimately one of the best explanations of the differences between traditional PHP vs. clientside rendered vs. SSR content serving. REALLY. WELL. DONE. 👍
@proudkinglion2215
@proudkinglion2215 4 ай бұрын
But he thinks that PHP is faster that JS...
@maxwilsonpereira
@maxwilsonpereira Жыл бұрын
Amazing content very well explained! Thanks a lot Theo! 😀
@ricktar15
@ricktar15 Жыл бұрын
Amazing video Theo. Your videos are tidbits into tech topics that are so ideal in giving brief overviews of new trends. I really like how you took the time to graph and visualize how the flow of package load has changed over these past times. Keep up the great work
@chiduong7553
@chiduong7553 Жыл бұрын
Thanks so much for this explanation, just wonderfully done :)
@some_antics
@some_antics 13 күн бұрын
This is the best explanation of SSR I've been able to find on KZbin. Well Done.
@cassiosalvador7961
@cassiosalvador7961 Жыл бұрын
Amazing explanation, thank you for that Theo!
@martini9388
@martini9388 6 ай бұрын
This is pure gold. Thx for shearing your knowledge!
@vishalsangole836
@vishalsangole836 Жыл бұрын
Help me a ton, i was having the questions but didn't know where to find answer. Thanks theo
@espendennis
@espendennis 8 ай бұрын
So to summarize: The benefits of SSR are: - we can cache the rendered page, which only works for not personalized pages, which unfortunately doesn't apply for most pages. - we can't show loading animations even if we would like to - if we have 100 users on the page with iPhones at the same time, if our servers have more performance than their 100 iPhones the rendering would be slightly faster - instead of js files and JSON we push huge html pages to the client. Wasn't the big preformance benefit of Angular and React that after the bundles where in the browser cache the only thing we had to push to the client was some JSON data instead of the whole html? - we can deliver a small part of the page statically generated then load more data and render the rest of the page on client side anyways I have been working for 2.5 years now with SSR in my current project and researched it on the internet a lot but I have not found a reason that's worth adding the complexity yet. And for me it sounds crazy that the servers should now have more power than all of the users devices compared to actually have faster rendering. And all of this runs on node.js which scales really bad and doing actual work on node.js servers just defeats the one benefit they have of being unblocking. If I'm missing something please tell me.
@Tikayy
@Tikayy 29 күн бұрын
Just wondering, are you still having the same mindset?
@marin1419
@marin1419 11 күн бұрын
Yes do you have the same mindset still?
@espendennis
@espendennis 10 күн бұрын
@@Tikayy Yes, in fact I still do. At work we are currently removing SSR from our whole stack because we measured performance and SSR was in many cases just as fast as client side and in some cases even slower. Our setup wasn't even perfect for the tests because we delivered the bundles for the client side solution via a node server without cache because we had no CDN available yet and we did not throttle the connection. On slow internet or with bundle via CDN SSR would have lost hard against client side instead of being just a little bit slower. And I don't even want to mention the extra complexity of the stack that the teams have to handle with SSR. Btw, this is not the first project I was in where we had SSR and removed it after performance tests. In another project we had SSR and also PWA workers for "maximum performance". The test results where exactly the same. SSR was slightly slower than client side rendered and with slow internet significantly slower.
@espendennis
@espendennis 10 күн бұрын
@@marin1419 just pinging you, so see my answer. KZbin 2024 still let's you @ only one person.
@Tikayy
@Tikayy 10 күн бұрын
@@espendennis Amazing info, thanks, appreciated!
@mngages
@mngages Жыл бұрын
Great video. As someone who is gonna start playing with next soon, i really needed the high level overview. Would help if you can make another video on how it is implemented too.
@t3dotgg
@t3dotgg Жыл бұрын
Many more videos coming soon
@problem4643
@problem4643 Жыл бұрын
@@t3dotgg Yes pleasee
@DavidAlsh
@DavidAlsh Жыл бұрын
SSR is the definition of premature optimisations. There is so much low hanging fruit people could do before SSR should be considered... but it's trendy and that's enough I guess
@supdudd5436
@supdudd5436 Жыл бұрын
💯. SSR is simply overkill in most cases
@marin1419
@marin1419 11 күн бұрын
@@supdudd5436 Do you think Vite is enough?
@BrentMalice
@BrentMalice 2 ай бұрын
ok watched a few times now and man i feel like i owe you 1000$ for this. ive been struggling with hydration too and this covered evertything so well. most people just talk about the topic, but you always talk about how the topic fits in the greater environment, and thats what i need where i dont know what i dont know. THANKS COACH
@FaustBusserl
@FaustBusserl Жыл бұрын
Thanks I recently learned this and this was a good overview. I think it is good that we get tooling to setup the rendering and it's data-flows easily. For example in some instances I'd rather have a loading spinner than a page with buttons I cannot click.
@jeromemanceau4263
@jeromemanceau4263 Жыл бұрын
Thanks Theo! Always great resource of information. Though I was waiting for the "oh look! it returns a JSON with the content 'users are not subscribing to your channel!'" :D
@Jerry-dg7cv
@Jerry-dg7cv 6 ай бұрын
this is so clear and inspiring! the visuals are so easy to understand and i love it! i wonder what software you were using to draw these models. anyways, thanks a lot!
@BryanLeewood
@BryanLeewood Жыл бұрын
Fantastic explanation, thank you for this.
@patrickw8559
@patrickw8559 Жыл бұрын
Awesome video. As a backend dev that has observed the cycle from the sidelines, it's funny to see that we're going back to rendering content on the backend/server side. The question that pops into my head is if embracing this will make it harder to build a pwa (mainly offline support)? Or is some caching layer enough to make this work decently?
@marlonjerezisla6496
@marlonjerezisla6496 Жыл бұрын
funny is just a nice word.. call it like it is nosense. if the problem is big JS bundle the solution is to use less JS, but the brains behind react want cash so they say everythings needs to be rendered on the server and the sheps follows.
@anyadatzaklatszjutub
@anyadatzaklatszjutub Жыл бұрын
pwa's are kind of dead for basically all usecases that pwa's were intended for, building mobile apps is the way to go
@krazymeanie
@krazymeanie Жыл бұрын
​@@anyadatzaklatszjutub Seems like you missed the point of pwa then
@okie9025
@okie9025 3 ай бұрын
​@@marlonjerezisla6496Exactly. React is a great component framework, but SSR for anything other than ordinary HTML is nonsense. Also no startups are gonna use SSR for their
@streetchronicles5693
@streetchronicles5693 Жыл бұрын
This content is so insanely valuable to someone like me... thank you
@anyadatzaklatszjutub
@anyadatzaklatszjutub Жыл бұрын
Theo's channel is the missing senior devs from most companies who actually care about you and know their shit
@aigen6560
@aigen6560 Жыл бұрын
Theo Breaks down the necessary things us develop don't investigate ourselves in depth
@SpaceOddity174
@SpaceOddity174 Жыл бұрын
Honestly one of my favorite videos you've made
@vikg4600
@vikg4600 3 ай бұрын
Thanks for posting this. Very helpful
@3ux1n3
@3ux1n3 Жыл бұрын
SSR is the industry going back to php slowly
@coldestbeer
@coldestbeer 11 ай бұрын
Php was great
@Kerngebruiker
@Kerngebruiker 11 ай бұрын
Exception Object is not a Object.
@allan_archie
@allan_archie 11 ай бұрын
This comment hurts my ego. PHP indeed seems to have had the right idea.
@andynn6691
@andynn6691 11 ай бұрын
The things PHP got right were a) didn't try to abstract away the HTTP request cycle in the way crap like JSP/ASP/JSF did, and b) easy to get going. The rest of the language and standard library is... not so good™.
@emirs769
@emirs769 11 ай бұрын
SSR was already present since a long time ago. This is SSR 2.0
@victor95pc
@victor95pc 8 күн бұрын
In my previous React app, we cache even the index.html file, so this whole SPA model was about 1ms because the user already had everything cached in their browser, It worked like magic, no component hydration no BS, just good old React app, after each release, we clean the index.html file so it gives the headers with the new base javascript to all users, also we split our App in multiple bundles for each page, by doing this we could handle millions of request with a super cheap server because the CDN was actually doing all the work for us. PS: with HTTP/2 everything its done all at once its not like this step by step as shown in the video, this happens super fast.
@gauravkalele7491
@gauravkalele7491 7 ай бұрын
Really great video ! Loved it
@wesleycoder
@wesleycoder Жыл бұрын
The editor is smooth, love all the care ❤
@hamzaakhun
@hamzaakhun Жыл бұрын
Great videos,, always learning new
@coach_chonko
@coach_chonko 9 ай бұрын
The complexity of these models are so high
@brand5991
@brand5991 Жыл бұрын
Great entry point for people that aren't that sure about the differences between all these techniques!
@xkr987
@xkr987 Жыл бұрын
Love your contnet, hope you keep it up
@mariumbegum7325
@mariumbegum7325 Жыл бұрын
Interesting video, looking forward to more
@mharley3791
@mharley3791 Жыл бұрын
This was great. Are you going to do more videos on this topic? And do you know of any great resources I could go to learn more?
@igboanugwocollins4452
@igboanugwocollins4452 Жыл бұрын
Thank you for this ❤
@aryanrahman3212
@aryanrahman3212 4 ай бұрын
This one was helpful to understand why the freak we need SSR frameworks. It makes the Developer experience much much simpler along with the SSR model compared to the traditional server rendered model of using a server and templating engine. The last part was really informative as well, we can have blocking renders for things that are essential for our App and have Suspense states for non-essential components.
@NuanceWebsites
@NuanceWebsites 10 ай бұрын
brilliant explanation!
@_PCode_
@_PCode_ Жыл бұрын
This was extremely helpful.
@BodnarchukR
@BodnarchukR Жыл бұрын
with CSR you've got fast loading too, if not fastest, on subsequent requests though and one can minimize initial rendering with suspense, fetching all the other chunks in background, while user stays on some page
@SingTingz31
@SingTingz31 Жыл бұрын
I never really thought about why one framework is better than the other besides ease of us, but this is just as important for performance.
@zainkhalid3670
@zainkhalid3670 2 ай бұрын
Really helpful content!
@subhranshudas8862
@subhranshudas8862 8 ай бұрын
Hands Down, best explanation by Maestro Theo.
@jamesdenmark1396
@jamesdenmark1396 Жыл бұрын
It was Gmail that changed the game when it was released, they used ajax to handle the massive data in the browser and replace part of the page without needing to refresh the whole page. You forgot to mention Backbonjs that actually started the spa framework or libraries 4-5 years before React.
@arminunruh452
@arminunruh452 Жыл бұрын
i used ssr react components but i didnt know you could combine them with suspends, nice!!
@arunsar7893
@arunsar7893 7 ай бұрын
Great historical perspective!!
@shakhruzrakhmatov2285
@shakhruzrakhmatov2285 Жыл бұрын
Hey Theo! Huge thanks for the detailed explanation! My concern is how w/ this RSC approach we could do real-time apps? I mean, when some component subscribes to db data in this case we propbably should avoid using RSC for this component right?
@donka86
@donka86 Жыл бұрын
The issue with this new model is state sync complexity between client and server, especially if you use a store system like redux. For complex applications, where lots of interactivity is required clientside, i still prefer the tradeoff of the spa model, where logic and store is in a single place at the costs of an initial longer load
@nightshade427
@nightshade427 Жыл бұрын
Back in the day we didn't do a whole page refresh when we needed data updated, ajax has been around since 1999. I remember aspnet update panels in 2000 that did what nextjs is now trying to do. I've been coding webapps exactly as your describing 20 years ago. What is new is actually old.
@diegoortega7910
@diegoortega7910 28 күн бұрын
this is a great video to learn about SSR
@dennischow7784
@dennischow7784 9 ай бұрын
I have a question regarding the implementation of web apps using the MPA approach, which involves utilizing HTML, CSS, JS, and server-side scripting like PHP for an example. Then I'm curious about the necessity of Server-Side Rendering (SSR) in this particular context.
@RyanTipps
@RyanTipps Жыл бұрын
Theo, can you compare CSR vs SSR vs RSC for subsequent page loads, e.g. the user is already on one page, then navigates to a second page within the site
@noschool-life
@noschool-life 8 ай бұрын
This is the channel to follow if you want to learn things from first principle.
@lenvaz8957
@lenvaz8957 2 ай бұрын
Crazy details 👌
@IvanRandomDude
@IvanRandomDude Жыл бұрын
6:21 Are first two steps cached by the browser after subsequent app visits? great explanation.
@nromancarcamo
@nromancarcamo Жыл бұрын
Kudos for the videos.
@jcs184
@jcs184 Жыл бұрын
Gen Z probably doesn't know what "Ajax" is.
@rifwann
@rifwann Жыл бұрын
this has been my question in my prototype note taking app
@jamashe
@jamashe Жыл бұрын
What program are you using Theo for writing and drawing on the screen? And thanks for the amazing explanation.
@byoda5370
@byoda5370 11 ай бұрын
Excalidraw
@tylerpashigian7706
@tylerpashigian7706 11 ай бұрын
This was an amazing video, super clear and concise. Does anyone know if there is a way to gain control of the loading state of NextJS SSR pages? I get that you gain performance because the entire page is returned, but when page loads are long in low network conditions, I've noticed theres a bit of an awkward period where youre not sure if a button press is actually doing anything while the server renders the page/component. Thanks!
@runonce
@runonce Жыл бұрын
In other words, instead of returning an empty HTML (like with CRA), you get to return content in it and it's up to you how much content you want to return. This likely reduces the number of spinners and waterfall effects on the UX.
@clnguye
@clnguye Жыл бұрын
Brilliant!
@pasinduvinsuka
@pasinduvinsuka 6 ай бұрын
Thank you so much ❤, and Can I know what is the software you are using here to draw those diagrams ? Is that a plugin for Obsidian ?
@martynclarke8400
@martynclarke8400 Жыл бұрын
I do enjoy writing JS/TS, the language has come a long way and does a lot of stuff out of the box, especially combined with Vite or Webpack... but the framework world is akin to a backpacker that leaves on his travels with a bare empty suitcase and come back home with 3 shipping containers full of clobber from each country he visited... With each problem it solves it gets closer to where it all started only significantly heavier :D haha
@YousufZiaTheOneAndOnly
@YousufZiaTheOneAndOnly Жыл бұрын
To be honest, I only think the SEO stuff is worth it for SSR. Else, how things are rendered can still be quite well controlled in CSR so the user experience is still very good. If you are not creating a full-stack app where the rendering server is the one making database requests, then the unnecessary mental overhead doesn't seem worth it. I may stand corrected tho. Nice talk!
@PranavJindal999
@PranavJindal999 Жыл бұрын
totally agreed. only point of SSR is to have SEO managed. Otherwise CSR frameworks are small and optimized enough to render client app almost instantly. free rendering on client. why pay for ssr server.. crawler bots should wait for app to render.
@ludwig8841
@ludwig8841 Жыл бұрын
@@PranavJindal999 wich CSR framework are you referring to?
@Dev-Siri
@Dev-Siri 10 ай бұрын
I don't think you are getting the actual point of SSR. SEO (although one of the most important) is not the only reason to do SSR. Its also faster initial load, accessibility, less JS -> more perf, more reach to users. I agree that SPA > MPA in terms of UX. But at some degree, performance should also be taken into consideration because.. people are impatient, and if you don't load faster, people will bounce and no one is going to stick around to use the amazing UX the app will provide.
@Dev-Siri
@Dev-Siri 10 ай бұрын
​@@PranavJindal999 CSR frameworks are small and optimized is probably the biggest lie I have ever heard. You think sending 300kb of JS just to render HTML is "small and optimized" compared to sending a 50kb HTML file? Even with a highly optimized framework like Svelte, you are stilll dealing with 150kb of JS to render MARKUP. Also, the worst thing you can do is predict what your client has to run the app. And you saying free rendering on client, isn't always trusted. Many people have low powered devices (You may build your beautiful SPA on a M1 MacBook Pro, but many of your users are on low powered mobile devices), and they struggle to use your 1MB JS app just because *you got lazy to SSR your page* SSR is like build tools, if you use it, your app will have a broader rich, faster loads, and better user reviews. Also, last point I find hilarious "crawler bots should wait for app to render" You are basically telling the google and other search engine crawlers "pay my bills for more computation to render my app's markup". Also, you should not assume all your users AS WELL AS crawlers are on the same super-fast computer that you are on. They run on low powered or high-throughput devices that don't have the computation power to run an entire JS engine like v8 and give it enough memory to run your web app's supposed but misused interactive part. Using JS to enhance is better than empowering JS to make the app collapse.
@victor95pc
@victor95pc 8 күн бұрын
@@Dev-Siri Who in their right mind would push 1MB of javascript to their client, you can split your JS files to reduce the bundle and cache the entire thing. I never understood SSR's objective, even the SEO is a damn lie, first WHY would I improve the SEO of a React app? I want to improve the SEO on the landing page which ofc is not made with React, so I still didn't find the use case for SSR, you add complexity(components hydration) to the project for what? Also, any device nowadays can handle a React app, like my phone has more cores than my PC damn, why do I need to send all the template generation back to the server? Sending to the client is WAAY more cost-efficient and once the client has cached my JS files they will only fetch the pages/files I update because I split my React app into multiple bundles. I put everything behind a CDN and voila, it's done, assets being delivered near the client location at max speed with almost zero cost, CDN saves a lot of requests to my server because it caches the server assets.
@VincentUchennaOk
@VincentUchennaOk Жыл бұрын
Great video, but how do I manage a multi-client solution, where I have a web app and a mobile app from the same business logic. Is there SSR for mobile app like on react native. If I have to write api for mobile app, does it not mean i am duplicating backend code with SSR?
@iqbali4u
@iqbali4u Жыл бұрын
Theo, I understand SSR is really nice for rendering. But CSR and SSR both should be infused in an app, by making everything SSR your cost for spinning the server processing is high. So we need to do an analysis to lower cost without losing performance. Today devices and computer have fast processor so the issue of CSR is being slow is their but we need to do cost analysis on that. Cost of running a server is always huge for small or big company. #ServerCost
@DummyFace123
@DummyFace123 Жыл бұрын
I’m an old man now but I rememer pushing against SPAs because of how gd slow they were in most implementations For a veeeery long time after spas were the new shinys, expertly maintained multipages with selective Ajax interactions were by far way faster than any other sites. In fact, to this day, the fastest possible experiences are essentially old-style mvc/php with manual dom updates. Look I get it that server rendered sites can’t do what spas do, but having become an expert at both and the inbetween, spas were engineered by non-frontend guys to solve problems that didn’t really exist in 95% use cases. And forgive me for my smugness but I can make a website that will beat every single framework out there and give the same experience or better. The problems were always get the page down fast, fully hydrated. Yep, asp/php. Onload fetch likely/potential resources like top-level navigation templates, preload images, etc. We also did things that I still think has a place that is no longer done, and use css to show and hide modals, instead of creating and destroying html elements. There’s a lot of things we used to do with css that was just much faster than updating the dom and rerendering. JavaScript is a great tool but it’s just so overrelied on now imo. It’s just so amusing all of the technologies that are “new” that aren’t new at all. “Microfontends” that’s literally what we used to do, return small pieces of html and js as needed and insert them into the page. Technology always seems to go in circles~
@DummyFace123
@DummyFace123 Жыл бұрын
Oh and selective use of templating with knockout or maybe vue if you want to get fancy. But most pages never really have much of a usecase for templating. Grids and such usually do their own templating. But for where you do need templating, it’s fine it’s an incredibly simple technology. Take the template, hydrate it, create element, register its handle with a controller, stick it in the page. And the JavaScript for all of these things are incredibly small, so you have to look at these js file sizes and wonder, Jesus h Christ in a chicken basket, wtf are the doing? Launching a satellite or rendering a website??
@boubeniamohamed236
@boubeniamohamed236 5 ай бұрын
😂 hh great comment, i very like it
@AlFasGD
@AlFasGD Жыл бұрын
I thought this was intuitive as a good UX practice, the user wants to be up-to-date with the page rendering progress, especially on lower end devices that tend to generally lag. Regardless, it's a good concept that must be definitely adopted more on the web.
@Daddyjs
@Daddyjs 8 ай бұрын
.this can all be done with next js 12? or just next js 13 with server components?
@suryaer3369
@suryaer3369 11 ай бұрын
in CSR it's the client which makes a lot of request. in SSR it's the server which makes a lot of responses. The number of responses from the sever is same I think for both CSR and SSR
@karansapolia2676
@karansapolia2676 Жыл бұрын
Really helpful video Theo. Thanks! How is React SSR - loading spinners within components, better than the page wide loading spinners we used to get in SPAs? I understand that now it's more granular and we can decide which components we want to be loaded with HTML in first load and which ones show the spinners, but from a user's perspective, how does this improve usability, perceived site speed, TTI, or performance in general? Would love to know your opinion
@t3dotgg
@t3dotgg Жыл бұрын
Because they start to load data as soon as the request is made, instead of whenever the JS finally loads and requests it. Add seconds of bullshit before every example I gave here lol
@blazi_0
@blazi_0 Жыл бұрын
Thing that i don't understand is how does next managing to do this? Like how next rendering a server component inside a client component how does this work?
@099bind
@099bind Жыл бұрын
Yes, but you can still independent of framework choose to not show the spinners and make it look and feel like it's SSR rendered without SSR. It will be faster just to load the necessary data rather than sending chunks of html. The browser still need to render every pixel on screen. I don't think we should be afraid of DOM manipulation, I think we just need a better way of doing so.
@brianmcbride1631
@brianmcbride1631 Жыл бұрын
The reason SSR is so popular is that Vercel wants to sell you server compute time. That is how they make money. MOST people would be better off with static site generation and hosting on a CDN. Even the non-beta docs in NextJS recommend SSG over SSR.
@darylbarnes9413
@darylbarnes9413 Жыл бұрын
SSG only works for the simplest of sites. Most businesses need content generated dynamically and often based on the user, geolocation, and other parameters.
@miggu
@miggu 7 ай бұрын
That's not true , any reputable business that needs to rank high in Google, will undoubtedly require the website to be SSR. SEO is the main reason why SSR exists. Also this video doesn't explain well how SSR works, HTML is send from server once, not multiple times.
@VovanFraer
@VovanFraer 10 ай бұрын
Nice video, thx man
@nineties_runner
@nineties_runner 10 ай бұрын
ne bazar' shlyapik
@robert8713
@robert8713 Жыл бұрын
SSR sounds great if you deploy to Vercel/Netlify. What if you have requirements to deploy on AWS/MSFT/GOOL cloud ?
@matheusbalbino7054
@matheusbalbino7054 Жыл бұрын
What a content!
@user-lm6hy6oy5w
@user-lm6hy6oy5w 7 ай бұрын
love devs that swear
@n4bb12
@n4bb12 7 ай бұрын
I never understood why people prefer SSR over an instant static response. Personalization often can't be served from the database alone but includes data in the browser (preferences, hardware info, local storage, indexeddb, ...) making SSR not feasible for a lot of things. Feature flags can be done static, too. So you end up doing SSR for 5% personalized data together with 95% of what could be static. Hydration is already slow. SSR is added on top. Potential cold starts are added on top. Higher infrastructure costs as well. Not a great recipe.
@kharadinbrahman
@kharadinbrahman Жыл бұрын
Thank you.
@seitbekir
@seitbekir 11 ай бұрын
Building web apps for many years I learned that there is always a tool you need, which is not cover all your requirements. SSR is a great technology when you know what you get. If there is a hot cache and proper separation on servers, good availability, this may save time for user, performance on servers, speed up CD and save a lot of money for customer. BUT, only of there is a need for this. Once I was working on video hosting service and there was a need for SSR, to make better position in Google and start video immediately after page runs (which is unrelated to SSR, but whatever). And the cheme you've showed in your example would be great solution. Unfortunately, it wasn't. Anyway, there is always a possibility to make great app using correct tools.
@agent9781
@agent9781 11 ай бұрын
webdev masterclass. ty theo!
@RapBatLe
@RapBatLe Жыл бұрын
What about T3 stack? It's means that after Server Components will be stable, then we will not need any typesafe connection between our backend and frontend, so no need to libraries like react-query or trpc?
@pietrosanchez7484
@pietrosanchez7484 Жыл бұрын
Am I understanding correctly? The SSR model we've arrived at is very similar to how Laravel/RoR sites with React components are doing? I'm curious why this wasn't the approach from the beginning.
@darylphuah
@darylphuah Жыл бұрын
because JS likes to re-invent everything! On a more serious note, its not quite the same. I'm not sure how you're using laravel/RoR to render react components, but to do SSR the way JS frameworks define it as, you'll need to be running a node-server to render the component for the frontend to use. We initially had the SPA/Backend separation because coupling our backend with frontend HTML templates was typically a bad idea. So SPAs were created and JSON was used to communicate the data with the frontend and now the 2 were decoupled. However more complicated frontends became slower because the JS bundle it had to download and process on first load was huge. The solution? JS flavoured SSR! Well actually its more like splitting the SPA into a app-router on the client side and let most of the processing happen on the server. Then when the client requests a page, the server returns the relevant component markup in the way the framework understands. Its a good middle ground solution. So the separation is something like this: React NextJs Backend (backend could be laravel/RoR or direct to DB). This way there's still no coupling between your backend and frontend.
@oeerturk
@oeerturk Жыл бұрын
wheres the video u mentioned at the end i cant see it
@bleakCode
@bleakCode Жыл бұрын
What's the name of the tool you use to draw the diagram?
@dimakozaryuk
@dimakozaryuk Ай бұрын
I remember how everyone was moving from MPA to SPA. And the idea was to change slider movies to nice interactive application experience in SPA. Now we are going back to a bit faster by still slide movie. And I wonder what will take to build same level of interactivity in MPA.
6 ай бұрын
Wouldn't it be a good reason to use "mfe" architecture to help/complement/replace some of the "component" architecture?
@turalhajiyev9029
@turalhajiyev9029 11 ай бұрын
After knowing Primeagen, I also moved from 3 monitors to a 14-inch macbook screen. You don't need anything else if you have a proper windows manager tool
I DONT USE NEXT JS
54:01
ThePrimeTime
Рет қаралды 306 М.
How was this not in the browser before???
16:30
Theo - t3․gg
Рет қаралды 38 М.
Surprise Gifts #couplegoals
00:21
Jay & Sharon
Рет қаралды 30 МЛН
SHE WANTED CHIPS, BUT SHE GOT CARROTS 🤣🥕
00:19
OKUNJATA
Рет қаралды 4,2 МЛН
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 20 МЛН
Vim Dadbod - My Favorite SQL Plugin
6:01
TJ DeVries
Рет қаралды 12 М.
WTF Do These Even Mean
13:44
Web Dev Simplified
Рет қаралды 70 М.
The case against htmx
6:21
Mark Jivko
Рет қаралды 9 М.
10 common mistakes with the Next.js App Router
20:37
Vercel
Рет қаралды 166 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 306 М.
JavaScript Framework Tier List
40:57
Theo - t3․gg
Рет қаралды 273 М.
How NextJS REALLY Works
28:25
Theo - t3․gg
Рет қаралды 134 М.
This Release Makes Me Want To Leave React...
36:59
Theo - t3․gg
Рет қаралды 99 М.
Вы поможете украсть ваш iPhone
0:56
Romancev768
Рет қаралды 476 М.
Готовый миниПК от Intel (но от китайцев)
36:25
❌УШЛА ЭПОХА!🍏
0:37
Demin's Lounge
Рет қаралды 326 М.
Рекламная уловка Apple 😏
0:59
Яблык
Рет қаралды 803 М.