Just started getting this now. Hopefully it’s some A/B testing that they’ll stop doing, but I’m not holding my breath

  • ClassifiedPancake@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    3
    ·
    7 days ago

    I’m a React dev. You can create server side websites, written in JS, that don’t require JS to be turned on in the browser. Granted, this just became a new official feature in React but has already been available with React frameworks like NextJS

    • PresidentCamacho@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      4 days ago

      That is insane! I’m wondering how they handle modifying the DOM w/ out JS, did HTML 5 get a significant update? I gotta look into this because that sound super interesting.

      Any chance you know what version that went out with? I did a brief look at 18 and 17 and couldnt find it. Id really love to know how they are managing this.

      • ClassifiedPancake@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        4 days ago

        It’s called Server Components. If you actually build a fully static website, there is no DOM modification going on. I would actually not recommend doing that with React because it kinda defeats the purpose. The goal of it is to have a mix of both. The initial render is super fast because it is prerendered once for everyone. Then dynamic data is being fetched if needed and elements are replaced. It also improves SEO.

        React 19 is not yet officially released but you can read more about it here https://react.dev/blog/2024/04/25/react-19

        • PresidentCamacho@lemm.ee
          link
          fedilink
          English
          arrow-up
          2
          ·
          4 days ago

          So you’re offloading the JS processing onto the server? I cant be understanding this correctly because there is no way anyone wants to pay for the serverside cost of something that used to be an end user “cost”. Also this would add interaction latency.

          • ClassifiedPancake@discuss.tchncs.de
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            4 days ago

            There is no latency on static pages. They are rendered once as regular HTML and then saved on the server to be immediately ready for the user. The server is only processing that initial data fetching and rendering once per site. If needed, it can be retriggered. This is great for blogs and other regular pages.

            Server pages on the other hand will do the initial fetch request every time but once the site is there, no data is missing and everything is there. It’s not for everyone. Regular dynamic pages still make sense. For every method there are use cases.

            Disclaimer: I’m speaking from my experience with Next.js which did the same thing long before and React now aims to make that easier. But I’m not sure if React has the distinction between static and server. It’s all new and I haven’t had a project to test it on yet.

            • PresidentCamacho@lemm.ee
              link
              fedilink
              English
              arrow-up
              2
              ·
              4 days ago

              Oh I see, its only for a static page. This makes so much more sense.

              I can see why you mentioned this feature fits weird with react, and I have to agree, its contradictory to the entire purpose of React lol.