Do you REALLY need SSR?

Sdílet
Vložit
  • čas přidán 26. 04. 2023
  • 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 🙏
  • Věda a technologie

Komentáře • 372

  • @frostmichael8360
    @frostmichael8360 Před rokem +110

    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/

  • @zangetsu370
    @zangetsu370 Před rokem +68

    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 Před rokem +7

      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 ?

  • @serge9941
    @serge9941 Před rokem +11

    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)

  • @nezukovlogs1122
    @nezukovlogs1122 Před rokem +41

    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 Před rokem +8

      Dude!!!🤯🤯🤯 I know you are joking but these makes so much sense

    • @ludwig8841
      @ludwig8841 Před rokem +9

      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 Před rokem +3

      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 Před 10 měsíci +6

      @@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 Před 10 měsíci +2

      ​@@dipanjanghosal1662I agree with you. It always the same talk about performance and how "slow" shipping some mbs of data are bad. Come on

  • @PsychoGod9898
    @PsychoGod9898 Před rokem +120

    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 Před rokem

      What does SSC stand for?

    • @PsychoGod9898
      @PsychoGod9898 Před rokem +5

      @@MyPlanetIsPluto I meant React Server Components. One S to much...

    • @thiagoelav633
      @thiagoelav633 Před rokem +1

      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 Před rokem +1

      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 Před rokem +7

      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.

  • @abrudner
    @abrudner Před rokem +6

    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.

  • @SeanMcQuaidCode
    @SeanMcQuaidCode Před rokem +2

    Man, you are putting out some BANGERS more recently. Keep up the great work, appreciate what you do Theo!

  • @kn-he1ik
    @kn-he1ik Před rokem +19

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

  • @jjrise
    @jjrise Před rokem +1

    ugh I love these excalidraw videos... thanks for the effort on these, unbelievably helpful!

  • @bbubbu21
    @bbubbu21 Před měsícem

    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.

  • @HHJoshHH
    @HHJoshHH Před 7 měsíci

    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.

  • @ashishpandeyone
    @ashishpandeyone Před rokem +17

    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!

  • @j2devstudio
    @j2devstudio Před 11 měsíci

    Your explanations (in tandem with Excalidraw illustrations) are the best I've ever seen. Thank you.

  • @christian-schubert
    @christian-schubert Před rokem +8

    This is legitimately one of the best explanations of the differences between traditional PHP vs. clientside rendered vs. SSR content serving. REALLY. WELL. DONE. 👍

  • @adaliszk
    @adaliszk Před rokem +68

    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 Před rokem +7

      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 Před rokem +12

      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 Před rokem +6

      @@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 Před rokem

      Yeah we're going back to our roots. Building back Java but the new modern and modular Java for the web 😂

    • @SkywalkerWroc
      @SkywalkerWroc Před rokem +5

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

  • @Jerry-dg7cv
    @Jerry-dg7cv Před 6 měsíci +2

    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!

  • @martini9388
    @martini9388 Před 6 měsíci

    This is pure gold. Thx for shearing your knowledge!

  • @ricktar15
    @ricktar15 Před rokem

    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

  • @espendennis
    @espendennis Před 8 měsíci +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 Před měsícem +1

      Just wondering, are you still having the same mindset?

    • @marin1419
      @marin1419 Před 16 dny

      Yes do you have the same mindset still?

    • @espendennis
      @espendennis Před 15 dny +3

      @@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 Před 15 dny +1

      @@marin1419 just pinging you, so see my answer. CZcams 2024 still let's you @ only one person.

    • @Tikayy
      @Tikayy Před 15 dny +1

      @@espendennis Amazing info, thanks, appreciated!

  • @cassiosalvador7961
    @cassiosalvador7961 Před rokem

    Amazing explanation, thank you for that Theo!

  • @chiduong7553
    @chiduong7553 Před rokem

    Thanks so much for this explanation, just wonderfully done :)

  • @YoannMaingon
    @YoannMaingon Před rokem +21

    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 Před rokem

      Yeah I think there are way more Business internal production spa than public ones. Nobody cares there about 0kb js or edge

    • @SkywalkerWroc
      @SkywalkerWroc Před rokem +4

      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.

  • @BrentMalice
    @BrentMalice Před 2 měsíci

    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

  • @DavidAlsh
    @DavidAlsh Před rokem +24

    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 Před rokem +10

      💯. SSR is simply overkill in most cases

    • @marin1419
      @marin1419 Před 16 dny

      @@supdudd5436 Do you think Vite is enough?

  • @jeromemanceau4263
    @jeromemanceau4263 Před rokem

    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

  • @maxwilsonpereira
    @maxwilsonpereira Před rokem +1

    Amazing content very well explained! Thanks a lot Theo! 😀

  • @FaustBusserl
    @FaustBusserl Před rokem

    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.

  • @gauravkalele7491
    @gauravkalele7491 Před 8 měsíci

    Really great video ! Loved it

  • @vishalsangole836
    @vishalsangole836 Před rokem

    Help me a ton, i was having the questions but didn't know where to find answer. Thanks theo

  • @coach_chonko
    @coach_chonko Před 9 měsíci +2

    The complexity of these models are so high

  • @patrickw8559
    @patrickw8559 Před rokem +26

    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 Před rokem +8

      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 Před rokem +1

      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 Před rokem +7

      ​@@anyadatzaklatszjutub Seems like you missed the point of pwa then

    • @okie9025
      @okie9025 Před 3 měsíci +1

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

  • @mngages
    @mngages Před rokem +49

    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.

  • @some_antics
    @some_antics Před 18 dny

    This is the best explanation of SSR I've been able to find on CZcams. Well Done.

  • @victor95pc
    @victor95pc Před 13 dny +1

    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.

  • @BryanLeewood
    @BryanLeewood Před rokem

    Fantastic explanation, thank you for this.

  • @vikg4600
    @vikg4600 Před 3 měsíci

    Thanks for posting this. Very helpful

  • @3ux1n3
    @3ux1n3 Před rokem +97

    SSR is the industry going back to php slowly

    • @coldestbeer
      @coldestbeer Před rokem +6

      Php was great

    • @Kerngebruiker
      @Kerngebruiker Před rokem +1

      Exception Object is not a Object.

    • @allan_archie
      @allan_archie Před rokem +8

      This comment hurts my ego. PHP indeed seems to have had the right idea.

    • @andynn6691
      @andynn6691 Před 11 měsíci +3

      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 Před 11 měsíci +2

      SSR was already present since a long time ago. This is SSR 2.0

  • @aryanrahman3212
    @aryanrahman3212 Před 5 měsíci

    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.

  • @subhranshudas8862
    @subhranshudas8862 Před 8 měsíci

    Hands Down, best explanation by Maestro Theo.

  • @SpaceOddity174
    @SpaceOddity174 Před rokem

    Honestly one of my favorite videos you've made

  • @brand5991
    @brand5991 Před rokem

    Great entry point for people that aren't that sure about the differences between all these techniques!

  • @jamesdenmark1396
    @jamesdenmark1396 Před rokem +6

    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.

  • @mharley3791
    @mharley3791 Před rokem +1

    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?

  • @SingTingz31
    @SingTingz31 Před rokem

    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.

  • @BodnarchukR
    @BodnarchukR Před rokem +15

    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

  • @arunsar7893
    @arunsar7893 Před 8 měsíci

    Great historical perspective!!

  • @wesleycoder
    @wesleycoder Před rokem

    The editor is smooth, love all the care ❤

  • @hamzaakhun
    @hamzaakhun Před rokem

    Great videos,, always learning new

  • @nightshade427
    @nightshade427 Před rokem +2

    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.

  • @streetchronicles5693
    @streetchronicles5693 Před rokem +44

    This content is so insanely valuable to someone like me... thank you

    • @anyadatzaklatszjutub
      @anyadatzaklatszjutub Před rokem +1

      Theo's channel is the missing senior devs from most companies who actually care about you and know their shit

    • @aigen6560
      @aigen6560 Před rokem

      Theo Breaks down the necessary things us develop don't investigate ourselves in depth

  • @igboanugwocollins4452

    Thank you for this ❤

  • @donka86
    @donka86 Před rokem +2

    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

  • @xkr987
    @xkr987 Před rokem

    Love your contnet, hope you keep it up

  • @mariumbegum7325
    @mariumbegum7325 Před rokem

    Interesting video, looking forward to more

  • @arminunruh452
    @arminunruh452 Před rokem

    i used ssr react components but i didnt know you could combine them with suspends, nice!!

  • @zainkhalid3670
    @zainkhalid3670 Před 3 měsíci

    Really helpful content!

  • @diegoortega7910
    @diegoortega7910 Před měsícem

    this is a great video to learn about SSR

  • @dennischow7784
    @dennischow7784 Před 9 měsíci

    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.

  • @_PCode_
    @_PCode_ Před rokem

    This was extremely helpful.

  • @NuanceWebsites
    @NuanceWebsites Před 10 měsíci

    brilliant explanation!

  • @noschool-life
    @noschool-life Před 8 měsíci

    This is the channel to follow if you want to learn things from first principle.

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

  • @lenvaz8957
    @lenvaz8957 Před 2 měsíci

    Crazy details 👌

  • @IvanRandomDude
    @IvanRandomDude Před rokem +2

    6:21 Are first two steps cached by the browser after subsequent app visits?
    great explanation.

  • @runonce
    @runonce Před rokem

    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.

  • @martynclarke8400
    @martynclarke8400 Před rokem

    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

  • @rifwann
    @rifwann Před rokem

    this has been my question in my prototype note taking app

  • @jcs184
    @jcs184 Před rokem +7

    Gen Z probably doesn't know what "Ajax" is.

  • @RyanTipps
    @RyanTipps Před rokem +5

    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

  • @suryaer3369
    @suryaer3369 Před rokem

    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

  • @jamashe
    @jamashe Před rokem +3

    What program are you using Theo for writing and drawing on the screen?
    And thanks for the amazing explanation.

  • @Daddyjs
    @Daddyjs Před 9 měsíci

    .this can all be done with next js 12? or just next js 13 with server components?

  • @pasinduvinsuka
    @pasinduvinsuka Před 6 měsíci

    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 ?

  • @nromancarcamo
    @nromancarcamo Před rokem

    Kudos for the videos.

  • @gazabtv9186
    @gazabtv9186 Před rokem +11

    SSR is a solution to a non-problem. If you're building a static site where performance and SEO are important, use pure html/SSG. If you're building a dynamic application where SEO is less of a concern, show loading spinners for an extra couple hundred milliseconds. Separate your concerns and choose the tool that excels in its domain. This is a much better solution than adopting SSR which is a half-baked solution that adds a significant mental, practical and maintenance complexity to your application. Also, don't forget the vendor lock-in that comes w/ Vercel.

  • @AlFasGD
    @AlFasGD Před rokem

    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.

  • @YousufZiaTheOneAndOnly
    @YousufZiaTheOneAndOnly Před rokem +9

    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 Před rokem +5

      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 Před rokem +1

      @@PranavJindal999 wich CSR framework are you referring to?

    • @Dev-Siri
      @Dev-Siri Před 10 měsíci

      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 Před 10 měsíci

      ​@@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 Před 13 dny

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

  • @099bind
    @099bind Před rokem +2

    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.

  • @user-lm6hy6oy5w
    @user-lm6hy6oy5w Před 7 měsíci

    love devs that swear

  • @radiozradioz2419
    @radiozradioz2419 Před rokem +3

    I know it was just an aside comment, but I liked it when you mentioned a performance improvement that could come from PHP. Too much nowadays people are too quick to belittle other technologies (especially "uncool" things like PHP) instead of recognizing that everything has advantages and disadvantages. Was nice to hear a good word about PHP from a JS channel.

  • @dimakozaryuk
    @dimakozaryuk Před 2 měsíci

    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.

  • @seitbekir
    @seitbekir Před rokem

    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.

  • @federico.r.figueredo
    @federico.r.figueredo Před rokem +197

    ACKCHYUALLY...React is a library. Not a framework.

    • @exhaustedrose
      @exhaustedrose Před rokem +8

      frameworks are collections of libraries!

    • @IvanRandomDude
      @IvanRandomDude Před rokem +26

      Not even React creators believe that anymore lol

    • @austincodes
      @austincodes Před rokem +1

      But everyone uses it inside a framework for the most part

    • @CamaradaArdi
      @CamaradaArdi Před rokem +2

      It's a framework, they're not fooling anyone

    • @federico.r.figueredo
      @federico.r.figueredo Před rokem +4

      @@austincodes You can use it inside an OS. Does that make it an operating system? No, still a library.

  • @clnguye
    @clnguye Před rokem

    Brilliant!

  • @underweasel
    @underweasel Před rokem +2

    I have been watching your SSR knowledge sharing videos for the past couple of months now. They are very helpful in trying to make sense of all this and I am very grateful that us developers have a resource like your channel for current and future reference. Thank you for that.
    That being said, I find that this new direction, that the React ecosystem is pushing so vehemently towards, feels very unnatural and over-engineered. I understand that there are cases where this kind of optimisation makes sense, but it is making it the default that worries me the most. Because React has such a huge user base, this new paradigm is essentially going to be shoved down their throats. I believe there is a sweet spot in API design, where you can obtain a reasonable amount of user guidance without being too opinionated. If there's one thing that was definitely not missing in React, that thing is more complexity.
    I know lots of smart engineers are putting huge efforts into this and I have a huge amount of respect for their work. I very much hope I'm the one who's wrong here.

  • @nonstopper
    @nonstopper Před rokem +1

    Web dev roadmap going absolutely crazy.

  • @brianmcbride1631
    @brianmcbride1631 Před rokem +8

    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 Před rokem +1

      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 Před 7 měsíci

      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.

  • @RapBatLe
    @RapBatLe Před rokem +2

    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?

  • @turalhajiyev9029
    @turalhajiyev9029 Před 11 měsíci

    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

  • @n4bb12
    @n4bb12 Před 7 měsíci +1

    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.

  • @tylerpashigian7706
    @tylerpashigian7706 Před 11 měsíci

    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!

  • @GrafHurricane
    @GrafHurricane Před rokem +1

    Make some videos about how to optimize a nextjs project, plz! I start to work with a wiki-like platform for company usage and nextjs just render everything really slow and even lighthouse show the lowest performance i ever seen

  • @iqbali4u
    @iqbali4u Před rokem +15

    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

  • @vaillancourtjp
    @vaillancourtjp Před měsícem

    Do you think that SSR (either page or component based) is mainly useful for the first load? Or is this useful for the entire app rendering process? My thought is that once the JS is loaded, cached and parsed, it's wat better to still using CSR for the updates and new data since it consumes less resources and bandwidth to return a JSON than the actual HTML (fetching + rendering server side) than hydration. So my take is to use SSR on the first load, and then CSR on subsequent updates, turning the app in a SPA.
    What's are your thoughts on that ?

  • @SBDavin
    @SBDavin Před 3 měsíci

    Watching the video, I honestly didn't hear any advantages of SSR over classic MPA with AJAX, which we have had since roughly 2005.
    Other than limited developer skills, I still don't understand why a dev would use interpreted JavaScript on the server instead of compiled language/framework using C#, Java, etc.
    Thank you for the video - well done!

  • @agent9781
    @agent9781 Před 11 měsíci

    webdev masterclass. ty theo!

  • @pietrosanchez7484
    @pietrosanchez7484 Před rokem +4

    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 Před rokem +1

      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.

  • @kharadinbrahman
    @kharadinbrahman Před rokem

    Thank you.

  • @kgubar
    @kgubar Před 7 měsíci

    Cool scribbles while you are talking. What program is it you are using for that? Edit: Saw it at the beginning, Exkalidraw!

  • @VovanFraer
    @VovanFraer Před 10 měsíci

    Nice video, thx man