Did RSCs Really Turn React Into PHP?

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ • 253

  • @jherr
    @jherr  Рік тому +40

    It is important to note that my jQuery code and vanilla JS code are performing what amounts to dangerouslySetInnerHTML operations (in React terms). In the case where you don't know the provenance of the data, or you have not properly sanitized it, this can lead to an XSS vulnerability, though the code shown here does not have an XSS vulnerability because the user input is not reflected.
    Please take care if you choose to use the JavaScript in the PHP or Rust examples (which is not recommended) to sanitize the code, or to create DOM elements programmatically and only set their innerText to avoid potential for XSS attacks.

    • @VincentUchennaOk
      @VincentUchennaOk Рік тому +2

      Not a fair comarison at all. Far from it. PHP is a bare server language. RSC+React is a library on top of "Javascript" which is a client language. Use laravel-breeze+alpinejs as a library ontop of PHP and see the difference. Thats what will be a fair comparison, not this..

    • @jherr
      @jherr  Рік тому +5

      @@VincentUchennaOk Question for you, if I put both of these sites side by side and you were not able to bring up the inspector or view source, if you were able to only interact with it as a regular customer would, could you tell which was which? Would you know which was React and which was PHP? Would just a regular customer using the site care if it was created using React or PHP? From the customer perspective the two apps are the same. Thus, it is a fair comparison. Not all sites are huge mega-complex monstrosities. Not all sites need a framework to build them.

    • @VincentUchennaOk
      @VincentUchennaOk Рік тому +2

      @@jherr That's not my point. I get the fact that they both look alike from a customer point of view. But in terms of technical comparison, it's far from fair. And I feel the pain from most PHP devs right now. Thank God for Laravel, etc.. and all those building tools to make the language most accessible like what nextjs is doing with React.
      And to look at it more critically, data is every company's business and power, so every Ceo would trust a safe and full featured backend server over a new tech like RSC, than compare frontend technologies. My point is this, every CEO will safely add new frontend tech to their reliable backend, than add new backend tech to their reliable frontend, always...
      It's inside out, not outside in..
      That's why is think this RSC might struggle to take root for long..

    • @wizamit
      @wizamit Рік тому +1

      Exactly what I was thinking. Why are we comparing a meta framework with simple PHP and jQuery 😅
      Just use laravel + livewire.

  • @ing.jdplee
    @ing.jdplee Рік тому +13

    The content of the table can be put in a and work with that so the headings dont need to be put each time.

  • @regibyte
    @regibyte Рік тому +43

    Fantastic video Jack! Thanks a lot for taking your time to do this comparison.
    On a side-note, for heavy PHP users these days there is another library that really shines and it's alpinejs, it's lightweight, fast and integrates easily with php.

    • @jherr
      @jherr  Рік тому +8

      I will check that out! Thank you!

    • @waleedmasoom6326
      @waleedmasoom6326 Рік тому +3

      @@jherr on that note, the TALL stack is being implemented in my team (tailwind, alpine, laravel and livewire) and I'd be curious to hear about how livewire and alpine look/feel to someone so familiar with the React world such as yourself.

    • @elamandeep
      @elamandeep Рік тому +1

      ​@@jherrplease compare laraval vs next js

    • @marcuss.abildskov7175
      @marcuss.abildskov7175 Рік тому

      They got nothing to do with each other lol

    • @regibyte
      @regibyte Рік тому +1

      ​@@marcuss.abildskov7175 you are right but at the same time, in this video Jack used NextJS and compared it to raw PHP, it doesn't make sense either to compare an SSR framework to a full language, but here we are anyway.
      NextJS offers so little to the development experience in comparison to everything laravel has to offer, it would indeed not be fair to compare both.

  • @ricardodasilva9241
    @ricardodasilva9241 Рік тому +67

    I think would be cooler to compare nextjs to laravel

    • @nimmneun
      @nimmneun Рік тому +5

      Yup, Laravel adds quite the overhead. And maybe use php-fpm with e.g. nginx, since PHPs built-in Webserver is only meant for debugging etc. It's rather slow.

    • @King-Gilamashur2758
      @King-Gilamashur2758 Рік тому

      I would love to see this too

    • @elamandeep
      @elamandeep Рік тому +1

      I agree

    • @SpaghettiRealm
      @SpaghettiRealm Рік тому

      @Shadow how about using fetch

    • @rajfekar4839
      @rajfekar4839 Рік тому

      @Shadow use livewire component

  • @thesunabsolute
    @thesunabsolute Рік тому +4

    The RSC patterns completely break down when you start to scale up an application. It becomes very difficult to remain consistent in how you use them. We ran into issues where we were just declaring "use client" on most components and only using the RSC as a data fetching layer. This led to issues with prop drilling from the top data component down to child client components. At that point, we just ditched the re-write project for 3 of our big Next apps. People hate getServerSideProps, and I get it, but I'd rather have that implementation over RSCs, as it sets a boundary, and the component receiving those props is just a client component. It just makes way more sense to me. I would look to something like Remix with its action/loader paradigm if I wanted to move away from NextJs, should they sunset pages and gSSP().

    • @jherr
      @jherr  Рік тому

      Yeah the loader paradigm is sweet.

  • @kevanschwitzer8585
    @kevanschwitzer8585 Рік тому +4

    Great content, easy to listen to, and highly informative. One thing possibly worth emphasizing further -- Response times or throughput for hello world style cases shouldn't carry too much weight. In many (most?) apps, most of the heavily lifting will be dominated by things outside app code, the database being the most common. So unless maximum performance at pretty much any cost is your goal, something that emphasizes developer productivity for web apps often hits the sweet spot. (i.e., something like PHP for a web app vs. Rust, C, C++). Even from a perspective of placing a high value on performance (see judyrecords for example) it wouldn't be a good choice to write/re-write it in a lower level language to eek out 10ms.

  • @tariksadiku4723
    @tariksadiku4723 Рік тому +22

    I'm just a junior developer, but I also agree with the "we still don't know the best practices for the relationships between RSC and RCC". I believe, without clear instructions on how to handle these two, it might get messy really quick.

  • @wp_panther
    @wp_panther Рік тому +19

    yay I'm just glad people are talking about Php again. I love it and I think it's one of the easiest languages to pick up if you want to start wrapping your mind around server-side!

  • @cloudkungfu
    @cloudkungfu Рік тому +2

    I love that the investigation gets wayyyyyyy more in depth as the video progresses 😂 good stuff!

  • @jitxhere
    @jitxhere Рік тому +7

    At the end Jack simply brought the absolute boss Rust lmao

  • @luizgrocco
    @luizgrocco Рік тому +2

    Although it was a really nice comparison and a wonderful job at it as always from you Jack. I find it hard to really trust any of the data we got simply because a more complex app is needed to accurately measure many of the benchmarks performed in this video. If a base case App is all we care about, then framework builders should make their framework as simplistic as possible, since their out of the box "create--app" will probably be the most performant in that scenario. But then, in a large project, that will no longer be true because of all the extra stuff needed to make a good App. All in all, what I'm trying to say is that this video is likely a "micro-benchmark" scenario that should be taken with a grain of salt.
    Either way, great job! The video still highlights many ways of accomplishing the task and is a valuable source of information like always from you Jack, keep up the good work!

  • @garrickcrouch4530
    @garrickcrouch4530 Рік тому +2

    Hey Jack thanks for all the vids. Super cool to see. One kind of weird comparison is using php dev server. Do you think it would be a much fairer comparison for all to use a proxy server like nginx and runtime/process manager more typical to how node and php are deployed in production services?
    NGINX -> PHP FPM -> some php stuffs
    NGINX -> node upstream server via PM2-> some node stuffs
    You could try an Open Swoole for PHPs server and probably got nearly the same speed of the Rust server form testing I've seen with it.
    THanks for the vids!

    • @jherr
      @jherr  Рік тому +2

      Hmmm, good to know! I'll check that out.

  • @hypergraphic
    @hypergraphic Рік тому

    Great video! It is cool to see PHP again as it's what I cut my teeth on back in '08. At work I'm still just using plain old client side react with Vite for the dev server. Since all our features are behind a login, SEO doesn't really matter to us. Also, as cool as all the SSR stuff is, I struggle to see the advantage of switching. We have a lot of complex UI stuff and I wonder how RSC will change it.

  • @parlor3115
    @parlor3115 Рік тому +3

    Thank you for this. I will refer our PM and techlead to this video once I propose rewriting everything in Rust!

  • @nightshade427
    @nightshade427 Рік тому +3

    I think people were saying it's similar to modern php with Laravel and htmx/livewire. Not similar to old school php with jQuery.

  • @nightshade427
    @nightshade427 Рік тому +6

    Not sure about php, but it is very similar to asp webforms and postback, if you want async components it looks very similar to asp webforms with updatepanel postback, from 2005. The code and approach of react server components and server actions seems very similar.

  • @kohelet910
    @kohelet910 Рік тому +2

    Really cool video ! I love those stats comparisons !
    Rust is really impressive. And I do agree, the more i use the app router, the more i feel frustrated by having small tiny bugs, and I don't always get why is that happening.

  • @CFXTBogard
    @CFXTBogard Рік тому +3

    1. Thanks for adding my comment in your video. that make my morning
    2. at the end of the video, where you show the charts it would be nice that it indicates what result is better (Page Size (Kb)
    Lower is better), Response Time(s)
    Lower is better, Request Per second
    Higher is better)
    In that way it is clear what is the optimal value on the chart.
    Thanks!

  • @kal9421
    @kal9421 Рік тому

    Fantastic video Jack! Thanks a lot for taking your time to do this comparison.
    I want to ask you if you can can give us an example about how to setup react server component with express or how to integrate react rsc with existing express app
    thanks !

  • @tech3425
    @tech3425 Рік тому +1

    Really well made video!

  • @yashkhd1100
    @yashkhd1100 Рік тому +13

    Excellent video Jack..!! I think there needs to be rethought in direction major JS frameworks are going. With cut throat competition in JS frameworks space they are just coming up with features which are not well thought out and more of a patchwork. Just look at syntaxes like "use client" and than there are special folders in NextJS with '(' syntax, all this I consider not very mature design. It works but it's not clean. Putting server functionality in client side frameworks is not adding much of a value. The whole JS full stack thing started with developers able to share models and some common functionality between both client and server so both always remain in sync and JS is the only option which is widely supported in both client and server. However, doesn't matter how much optimized JS runtime engines are at the end of the day JS is a "scripting language" and all variables/functions in JS is merely an "associative array". There is nothing much compiler/interpreter can do to get more performance. Just look at perf numbers...languages like PHP which is not known for performance are easily beating JS by miles. Matured systems like Java or .net core will easily beat JS and PHP by miles. In my opinion rather than overengineering this JS frameworks React should continue to improvise on client side and let server side systems handle their things for the better.

    • @2gbeh
      @2gbeh Рік тому +1

      Agreed

  • @BeyondLegendary
    @BeyondLegendary Рік тому +13

    Impressive, very nice. Let's see Paul Allen's performance comparison.

    • @jherr
      @jherr  Рік тому +2

      So the Microsoft Paul Allen? Or some other guy?

    • @BeyondLegendary
      @BeyondLegendary Рік тому +1

      A movie character played by the B-lister Jared Leto.

    • @nathanpointer7844
      @nathanpointer7844 Рік тому +1

      Love that meme

    • @codedusting
      @codedusting Рік тому +2

      Lmao 🤣🤣🤣 you're commenting this in every one of Jack's videos.

    • @artuchka-profi
      @artuchka-profi Рік тому +1

      ​@@jherr american physco movie starring Christian Bale

  • @mahmoudmousa2405
    @mahmoudmousa2405 Рік тому +10

    Thanks for making this video. It must have taken a lot of time.
    I still thinks React is going the wrong way. What NextJS is achieving now can be done with simpler code like you showed here.
    This can still be much better by using AlpineJS or Tubro

  • @ouss
    @ouss Рік тому +7

    Tom uses PHP

  • @saintgalgo
    @saintgalgo Рік тому +2

    What would be the bundle size if instead of using a client component with a server action you just used a server component and filtered the json response using query params?

    • @jherr
      @jherr  Рік тому +1

      I think I did a bundle size check pre-client component and the numbers were really close to with the client component. Not using client components does not mean a zero sized bundle. Not even close. It still includes React, and still does hydration. It just hydrates from the JSON payload instead of re-running the client components.

  • @Flash136
    @Flash136 Рік тому +5

    The component model and state management of React is hard to beat. I'm still sticking w/ React, but for now I will have to use the pages dir because the app router is still too slow.

  • @yaanno
    @yaanno Рік тому +1

    Thank you for including Rust (again)!

  • @2penry2
    @2penry2 Рік тому

    Great illustration of why "view as a product of state" is such an attractive offering. Important lesson for new learners about where we came from and why Nextjs/React w server actions is a huge plus in terms of DX.

  • @johnychinese
    @johnychinese Рік тому +2

    Yep, I still use pages for any project and will continue to use. It just makes sense

  • @mengfandy7365
    @mengfandy7365 Рік тому +2

    Nice Jack, i love your channel :)

  • @perezident14
    @perezident14 Рік тому

    What Pokémon is your favorite though? 🧐🧐🧐

    • @jherr
      @jherr  Рік тому +1

      Paras. Hahahaha.

  • @other_perfection
    @other_perfection Рік тому +1

    thank you! great video as always

  • @runonce
    @runonce Рік тому +2

    Great vid! I was expecting to see "components" being listed as a huge advangtage to PHP, for me that is the killer feature of React. Also I wonder how would affect the results if you used a PHP framework like Laravel or Symfony.

    • @jherr
      @jherr  Рік тому +1

      Yeah, that's true. You are correct. That would be the first and primary benefit. I guess I skipped over that to isomorphic rendering of said components.

  • @zakir.nuriiev
    @zakir.nuriiev Рік тому +1

    Thanks a lot for an interesting comparison!

  • @arjobansingh1940
    @arjobansingh1940 Рік тому

    Hey Jack,
    Great content, you are among the only few content creators who make videos about intermediate to advance topics. Kudos for that.
    Can I request a video regarding usage of React query in NextJs App directory?

  • @kaas99
    @kaas99 Рік тому

    Clean breakdown thanks! I agree with on not adopting App router coding pattern yet.

  • @codernerd7076
    @codernerd7076 Рік тому +25

    2 things you left out, general hosting cost and hard disk space needed... there is a massive difference right there spoiler PHP wins both!

    • @CFXTBogard
      @CFXTBogard Рік тому +3

      The idea is to compare performance, not costs.

  • @nyambe
    @nyambe Рік тому

    is this like server/api in nuxt 3?

  • @sammckay
    @sammckay Рік тому +13

    Laravel with Livewire would have been a nice comparison for the PHP side. Nice video though

    • @lutfiikbalmajid
      @lutfiikbalmajid Рік тому +1

      Livewire is always send request for every states action.

  • @mehrdad-ai
    @mehrdad-ai Рік тому +1

    love your honesty!

  • @walidmkw
    @walidmkw Рік тому

    In long term, the state management would exist on rust too no ? A fullstack framework as nextjs is but with rust instead of node ?

  • @KyleRonning
    @KyleRonning Рік тому

    I'm doing a DevShare presentation at work this week on React Server Components. We have a lot of PHP code at my work. This video is great. We should just sit and watch this instead!

  • @Flash136
    @Flash136 Рік тому +2

    5:46 TIL you can await and receive data from a server action.

  • @skapator
    @skapator Рік тому +5

    Sad but true, the decision for all is based purely on job market. Not tech. Unless PHP starts to get more views on youtube.

  • @sarbull
    @sarbull Рік тому

    what year is this?

  • @robwatson826
    @robwatson826 Рік тому +2

    That was a great video Jack, although as an avid PHP fan I was screaming at you for using jQuery so I'm glad you mentioned Vanilla JS towards the end.
    Very interesting to see that Rust server at the end too. I wonder if there's some future where we use Rust to deliver the SSR'd part of a page and React (or some other framework) on the front to handle the CSR?

    • @jherr
      @jherr  Рік тому

      Hmmm, that would be tricky because you'd have to get the hydration setup exactly right. Basically the Rust templating code (or whatever) would have to exactly produce the same HTML to match what the JS code is going to do. So you have an even more drastic version of the two languages problem that we have with PHP and we "solved" with isomorphic rendering.

    • @robwatson826
      @robwatson826 Рік тому

      ​@@jherr That's a very good point, maintaining 2 sets of code producing the same outputs is not a simple endeavour!

  • @neociber24
    @neociber24 Рік тому +1

    I like Rust but we don't have the DX of Javascript and React, I try using Yew and Leptos for SSR and reloading during development is too slow because we need to compile each time.

  • @klutch4198
    @klutch4198 Рік тому +1

    Thanks Jack!😊

  • @fcnealvillangca7943
    @fcnealvillangca7943 11 місяців тому

    I actually plan to refactor my apps to HTMX and alphine, django and just make overkill todo app list with authentication in each front end framework with nextJS, Nuxt, Sveltekit, Etc Etc. incase future job applications wants a sample of those lol. the only constant in JS eco is the changes monthly. instead of correcting some lapses from previous push I ended up updating new version and breaking changes in frontend I'm so tired 😢

  • @deathdefier45
    @deathdefier45 Рік тому

    I worked with PHP once for a project in December, figured out how to use it within a day or two just basic crud didn't know it was this performant.

  • @shabtikaplan
    @shabtikaplan Рік тому

    So should we move back to PHP and use vanilla js for smaller projects?
    When no node js server is possible, do you recommend using react like WordPress does in their block editor?
    Finally, if you are building a php and vanilla js app, do you actually recommend fetching php served pages? Doesn't that take forever every time you make a change?

    • @RmNrIHRoZSBDQ1AK
      @RmNrIHRoZSBDQ1AK Рік тому +1

      Do you need to serve thousands of requests per second for your smaller projects? If no, it doesn't matter.
      WP block editor serializes to html which is then directly rendered by the front-end. There's no relation between the block editor's use of React and what is displayed by the WP template.
      I would never. If you need an SPA, build a front-end client and REST API. If you just want static pages (e.g. blog), serve them rendered directly with PHP. Put Varnish cache in front if you need to handle russian bots.

    • @laztheripper
      @laztheripper Рік тому

      The issue is the entire point of react and these types of libs was (at the time) to cut down on server costs, aka moving the work/rendering to the client.
      Literally the only reason why you would use nextjs or any of the "kit" solutions is if you absolutely *need* good SEO, which entails SSR for search engine discovery and indexing.
      For small or personal projects, that's not a concern and even past that, searches are starting to adapt to single page apps.
      In other words, use your favorite framework to make SPAs and a barebones backend to serve the files and return basic blobs of json.
      I can elaborate on my stack if you want, but if you do roughly as I mentioned you can run a 15$ a month vps that can handle roughly 1000x the traffic nextjs does.

    • @dealloc
      @dealloc Рік тому

      WP "Gutenberg" is probably the worst experience of using React I have ever had-and I am not even talking about the outdated tooling, which I have replaced myself with a custom Vite plugin.

  • @jcandeli
    @jcandeli Рік тому

    This is a great video but as a side tangent, does it bother anyone else that he doesn't use a semantic Table element instead of Divs?

  • @orbitory7936
    @orbitory7936 Рік тому

    Am I wrong in saying that you are comparing a full frontend framework with jquery which has no data binding? Like mentioned by others use alpine, htmx or at least some jquery plugin for data binding. But yes hard to beat RSC in react

  • @ZakiWasik
    @ZakiWasik Рік тому

    I think the ending of this video is a perfect segue into the video Theo did over on his channel: ua-cam.com/video/2Z4fZtSKlcE/v-deo.html

  • @bigmistqke
    @bigmistqke Рік тому +1

    looking forward to the interview with ryan!

  • @johiny
    @johiny Рік тому +1

    there are lots of ways of do somenthing in web development or in software in general, I guess you have to put in a weighing what you need, what you want, ex: performance, friendliness development, eco system, all that dependent on you and your team, and it can change overtime, I'm sure there is a good reason of why multiple companies started its projects with ruby on rails regardless it wasn't super popular, like everything in the life it depends.

  • @srinidhihebbar196
    @srinidhihebbar196 Рік тому +1

    Why isn't qwik used anywhere in the comparisons???

    • @jherr
      @jherr  Рік тому +2

      It has similar performance numbers to pages in terms of raw throughput. Better TTI though than React. Not as good as the vanilla JS version, since even with its aggressive lazy loading it's not going to be lower than 0.4Kb.

    • @srinidhihebbar196
      @srinidhihebbar196 Рік тому +1

      @@jherr Nice work Jack. Appreciate your contents. 🤝

  • @shayanalijalbani9894
    @shayanalijalbani9894 Рік тому

    Should we use edge in next js real world projects can you make a video on it

  • @jediampm
    @jediampm Рік тому

    Hi Mr. Herrington, few things to say by being honest and transparent;
    1. When devs are comparing Nextjs and RSCs to PHP is in terms of DX, which means you are mixing business server logic ( sql queries, etc) in same file with view / presentation client layer (with interactivity + jsx). Since react release state in functional components was already bad, because you are also are mix business logic (interactivity logic) with presentation layer (jsx) in client side. In PHP you can and should do that separation where in NextJS at the moment you can not, similar like SvelteKit and NuxtJS do, by create a separated only for server logic.
    2.Make no sense comparing server only language (Vannila PHP) with js runtime nodeJS framework like NextJS (Which include a client side framework / lib like react), And what you made with PHP is not secure because of XSS and the same on jquery and vanilla js. Where NerxtJS since is a framework and using jsx, is safe.
    3.Why using php built in server when in real world you use server like Apache http or ngnix with PHP interpreter ? Also make no sense. And you should mention the version of PHP.
    4. Why not comparing Vanilla PHP ( like said in point 2 make not sense) with React client side instead of jquery or vanilla js?
    5. From start this comparison make no sense, however a transparent comparison would be using a php framework like Laravel or Symfony with and without react, which would be save to XSS in this case also. Beside when you bring rust to this, you dint with vanilla rust, you use frameworks too. So ya just another foot gun.
    So in this simple example, what is the point of using nextjs, when you can use vanilla PHP with Vanilla js which are pretty fast, slim and easy to use and even can save some money with hosting and in human resources. JS ecosystem are AWESOME . LOL.

    • @jherr
      @jherr  Рік тому

      Outside of #3 I disagree, from the customer perspective all three of these web experiences are symmetric and therefor comparisons can be made fairly. Your argument seems to boil down to PHP isn't comparable to NodeJS because it's not JS.

    • @jediampm
      @jediampm Рік тому

      @@jherr I think you didnt understand the point #1. And you are not comparing PHP vs NodeJS. Which itself, at least for, also make no sense comparing a language with a run time, Even worse you are comparing Vanilla PHP with a nodeJS framework, nextjs which include reactjs. like i mention in #2. Sorry but i am not the only one mention this, just read other comments. And read my #5 if you want to be fair.

    • @jherr
      @jherr  Рік тому

      @@jediampm I hear you, but you aren't addressing my point that, within the confines of this simple app, from the customers perspective they are symmetric and therefor comparable.
      As for the security and XSS, what is the actual exploitable vector for an attack outside of a man in the middle attack.

    • @jediampm
      @jediampm Рік тому

      @@jherr Why you mention customers, like people that use the app ? I am talking in devs perspective with DX in mind. comparing and making an app with vanilla way, only with pure PHP to a nodeJS framework make no sense , period. It like comparing nodeJS to NextJS, make no sense too.
      When i mention #5, i mean in terms of comparison, compare nextjs to Laravel + livewire, for example, so between frameworks. And when you use a frameworks also are avoiding XSS in this kind of examples. And you didnt mention why not PHP with React LOL.

    • @jherr
      @jherr  Рік тому

      @@jediampm So a comparison is only fair when you have a similarly heafty framework to weigh down the client? The fact that the application still works and runs as expected to the customer means nothing?

  • @virtual5754
    @virtual5754 Рік тому

    Perhaps filtering is not the best use case to illustrate server actions. I believe filtering, at least at low-medium scale, should be done fully on client. If we send all initial data on first request and keep it on client, there is no need to make additional requests and make server do extra work. And, depending on scale of our data, multiple searches could result in much bigger data transferred than full data set on initial load.
    For performance I can suggest looking into bun runtime. It can be used to make fast api server, but it is still in development, so it cannot run entire frameworks in its own runtime yet.

  • @mmzzzmeemee
    @mmzzzmeemee Рік тому

    Can you do a vid on incrementally changing components from using the pages dir to the app dir?

    • @jherr
      @jherr  Рік тому +1

      Sadly I don't think anyone has really good best practices for that. Those are evolving day-to-day. And the App Router is still evolving.

  • @MrEnsiferum77
    @MrEnsiferum77 Рік тому +3

    RSC and RQ next video?

  • @boot-strapper
    @boot-strapper Рік тому +3

    YOU DID IT, YOU TOOK MY RECOMMENDATION TO DO SOME RUST!!!!!!!!!!! wooooooooooooooooooo

  • @DanielOpitz
    @DanielOpitz Рік тому

    Great video. Why does your PHP script fetches a json file over HTTP for every request? For much better performance, this json file could be fetched directly from a file without calling another webserver. The performance would then be much faster.

    • @jherr
      @jherr  Рік тому

      The request of a JSON payload is meant to imitate a backend microservice.

    • @DanielOpitz
      @DanielOpitz Рік тому

      @@jherr Ok, thanks for your feedback.

  • @rumble1925
    @rumble1925 Рік тому +1

    React actually did always look like PHP but it was client side. The re-render of the page when you POST new data is what the virtual dom emulates but in a better and more efficient way. PHP isn't bad because of how you could render templates, it was bad because of PHP the language and finicky environment it ran on.

    • @jediampm
      @jediampm Рік тому +1

      However in case of PHP as language, the fault is on Developer for not separating business logic from presentation layer. Where in case of React is a choice of the creator since the release of functional components with state you have that look of mix .
      It easy to point out the fault to the language instead of the dev choices. LOL

    • @rumble1925
      @rumble1925 Рік тому +1

      @@jediampm I'm thinking more about how PHP was a language that had no real design direction and was just a haphazard pile of awkwardly implemented functions around C code. It's better now though but hard to get away from legacy code.

  • @Svish_
    @Svish_ Рік тому

    You there's a `` tag for tables, right? 😛

  • @mgs_4k198
    @mgs_4k198 Рік тому

    You can still get all of the React (or anyother SPA) library benefits if you create your APIs in PHP and use an SPA library on the front-end.

    • @jherr
      @jherr  Рік тому

      Another fair point. You are on a roll!

    • @mgs_4k198
      @mgs_4k198 Рік тому

      @@jherr I appreciate the distinctions you tried to make in this video, but I think often a times people promote this notion that "JavaScript apps are fast and php is slow" without really making an accurate comparison between the two.
      I've done a bit of work in both ecosystems. From my point of view the Laravel way offers a lot more than the full JS ecosystems.
      Also I don't think that the JS ecosystems are just naturally more performant. What is more important is just how you build your app.

    • @jherr
      @jherr  Рік тому

      @@mgs_4k198 I think the video shows in all cases PHP being faster.

  • @adaliszk
    @adaliszk Рік тому +1

    While the PHP example is fine, I feel like we would need an actual real-world example using a framework to make it apples to apples. As for Rust, rocket is great, although if your really want performance then actix is something mindblowing :)

    • @jherr
      @jherr  Рік тому

      A viewer added an axum version and it's apparently 3X faster than rocket.

    • @alfieqashwa
      @alfieqashwa Рік тому

      Axum ❤

  • @kirillvoloshin2065
    @kirillvoloshin2065 Рік тому +1

    anyone else having Vietnam flashbacks from seeing jQuery?

  • @bideshbanerjee5506
    @bideshbanerjee5506 Рік тому +1

    Jack it's a request if possible can u make a video about making our own server component setup..and also explaining how RSC is working....🙏🙏🙏🙏

  • @grinsk3ks
    @grinsk3ks Рік тому

    In general the PHP approach is pretty slick and simple. The problem I have with it is DX and docs. They are highly inferior to JS frameworks. Furthermore the frontend feels "decoupled" in a bad way, since you have your code spread across many places. Template file, js, CSS, PHP controller, ...
    And then there's the highly discussed scaling issue. On every request, everything is bootstrapped and run. Sounds like a ton of overhead to me. In the plus side your server is basically idle when there is no request.
    I can confirm the large Drupal apps slow. That's why these projects tend to have a lot of caching.
    Laravel Livewire might be a solution to this. I didn't try it, but I doubt that it handles reactive rendering as well as a js framework

  • @xanthe7045
    @xanthe7045 Рік тому +1

    Wow! I guess it's about time i migrate my NextJs app to PHP :)

  • @nubian_goat
    @nubian_goat Рік тому

    I’ll still use app router since that’s the only thing I know 😅, would be amazing to learn that rust tho. Any tips for a good video on it ? ❤🎉

    • @jherr
      @jherr  Рік тому +1

      Well, as it turns out this video is getting some Rust love. Someone has already given another implementation of the Rust example, this time using Axum, and it's up in the repo now.

  • @MMH94MMH
    @MMH94MMH Рік тому +2

    Nowadays it is no longer necessary to use jQuery, javascript has been greatly improved, I always prefer to write vanilla javascript than to include a lot of code that is not fully used.

    • @jherr
      @jherr  Рік тому +1

      If you watched all the way to the end I use vanilla JS instead of jQuery. And I updated the code on the github repository to do it without using innerHTML and it's still really small.

  • @gordonfreimann
    @gordonfreimann Рік тому +1

    i would LOVE to see same metrics with solidjs too with signals😢

    • @jherr
      @jherr  Рік тому

      IMHO, probably going to end up somewhere between NextJS pages and PHP. There is an upward bound on the amount of speed you can get out of a Node server.

  • @JLarky
    @JLarky Рік тому +4

    9:23 Thank you so much for this! I was hoping for SQL injection in the PHP version, but XSS voluntarily is good choice as well 🎉

    • @cristianbilu
      @cristianbilu Рік тому +2

      How is that XSS?

    • @JLarky
      @JLarky Рік тому +1

      @@cristianbilu thank you for this reply as well, brings so much joy to my little heart

    • @chrisgascoyne2958
      @chrisgascoyne2958 Рік тому

      But who builds with vanilla php anyway? Symfony supremacy! :'D

    • @RmNrIHRoZSBDQ1AK
      @RmNrIHRoZSBDQ1AK Рік тому +1

      Who cares? Data source is a json file distributed with the app. If you can rewrite that, setting html is the least of your worries. Also good luck finding a SQL injection in a static file ro DB lol.

    • @jediampm
      @jediampm Рік тому +1

      ya. this why you should always use a framework, to avoid XSS and SQL injection

  • @dracula5752
    @dracula5752 Рік тому +1

    what theme you using for vscode? i think for smaller and simpler project php is simpler and good but for bigger projects you need react,vue. using php so nice to see on yt. nice video :)

  • @shayanalijalbani9894
    @shayanalijalbani9894 Рік тому

    Can you make a video on your vs code setup

  • @therealdevopsintern
    @therealdevopsintern Рік тому +1

    What drives me nut is the cost of hosting a nextjs application. But with php you can host your application on a shared hosting- just copy your files and paste.

  • @TariqSajid
    @TariqSajid Рік тому +2

    php save people life. so hate if you want to hate php. but i will use php no matter what.

  • @WesleyHandy
    @WesleyHandy Рік тому +1

    Rust and Vanilla JS seems like a killer combo, of course, if you know Rust

    • @jherr
      @jherr  Рік тому +4

      FWIW, I really don't know Rust, I used a combination of ChatGPT, Stack overflow, API documentation and... engineering skill. To just kinda wing it. Turns out it wasn't entirely terrible. On the plus side that experience gave me a lot of confidence that AI is still just a tool and not a replacement. There is no way I could have done that without being an engineer with previous experience in C/C++, Go, Rust (a little), Java, etc.

  • @ejoojoo
    @ejoojoo Рік тому

    add solid to the comparison

  • @bm830810
    @bm830810 Рік тому

    a comparison with sveltekit would also be interesting

  • @d13-s8b
    @d13-s8b Рік тому

    The question is..why app dir lose everything against pages dir?😢

    • @robbydooo
      @robbydooo Рік тому

      Thats actually quite an easy question to answer if you think about what the app directory is doing. Something that hasn't really been discussed in the comparison is that app directory removes all bundled javascript so the page is significantly smaller than the pages version. if you have real data heavy pages then sure the initial page load my be slightly slower but the overall performance of the page will be much much quicker. All that logic to work out the dependency tree on server vs client components must have an overhead.

    • @jherr
      @jherr  Рік тому +1

      "app directory removes all bundled javascript", that's actually not the case. Even when the app was RSC only at the start it was still a ~80Kb release bundle which is run on startup to hydrate the client. The difference is that with the App Router the hydration uses the VDOM serialized as JSON at the bottom of the page. And with the pages model the application is re-run on the client with the serialized data from getServerSideProps in order to do the hydration.

  • @nemanjazivaljevic1656
    @nemanjazivaljevic1656 Рік тому

    Could you make a video about Rusts Sledgehammer framework?

  • @sylensdrake9706
    @sylensdrake9706 Рік тому

    laravel with inertia gives isomorphic rendering by doing everything in vue/react/svelte

  • @JLarky
    @JLarky Рік тому

    Please compare to server rendering in Marko and Qwik :)

  • @adfasdfasdf643
    @adfasdfasdf643 Рік тому +7

    PHP is honestly better than RSC/Nextjs for the mental model they are going for. I feel like React/Nextjs strengths are still for creating a minimally hydrated SPA with fast interactions. If we were to compare interaction speeds with a json api call, it should be better than PHP or RSC. RSC are currently the worst of both worlds. If I want fast interactions I would go for a SPA. If I want fast page loads I would go for static/PHP/Rust

    • @oscarljimenez5717
      @oscarljimenez5717 Рік тому +2

      If you want highly dynamic site? Then you have to go with RSC, even if SSR is slower right now, you have more things like Streaming, Static etc

  • @iammahabub
    @iammahabub Рік тому +1

    It was legit & had a great discussion ❤

  • @TheGiliwawa
    @TheGiliwawa 10 місяців тому

    well you're not comparing the same thing if you're comparing php to nextjs one is a language the other is a framework.

  • @ravenbergdev
    @ravenbergdev Рік тому

    I think when people say "it's just like php" they are really trying to say: the stuff is too tightly coupled and has no clear separation of concerns.

    • @jherr
      @jherr  Рік тому +1

      Yeah. I probably took it a bit more literally than that. :P But because this is such a React channel I did want to show some kind of drastically different alternatives. I see React being misused a reasonable amount. I don't mean bugs, I just mean "I wouldn't have used React for this site." And the alternatives aren't bad. And things like Laravel's Hotwire are, in their own right, very cool and potentially a better fit for a lot of applications.

    • @ravenbergdev
      @ravenbergdev Рік тому

      @@jherr haha you showed well! Love it! Undercover PHP developer. 😁

    • @jherr
      @jherr  Рік тому

      @@ravenbergdev I'm just a fullstack web developer. Some days that means I'm a React developer, sometimes Solid, sometimes... whatever.

  • @MobiusCoin
    @MobiusCoin Рік тому +1

    Really wish you used Alpine instead of jQuery. The comparison would've been a lot more analagous. Also... maybe even Laravel Livewire?

    • @jherr
      @jherr  Рік тому

      Yeah, livewire is hella cool.

  • @devjcarrillo
    @devjcarrillo Рік тому

    I love the examples but is this comparison fair? PHP's built-in server is way slower than using nginx or even apache. I think the metrics will be a 🤏 different if used with nginx. Of couse, rust is still going to dominate.

  • @mr7clay
    @mr7clay Рік тому +4

    JSX is just unrivaled tech for HTML construction: (1) XSS-safe by default and ensures proper construction of (2) attributes and (3) tags. A huge part of what makes PHP annoying is needing a template language for 1 and you can still mess up 2 and 3.

  • @alsherifkhalaf7385
    @alsherifkhalaf7385 Рік тому

    What about Bun.Js ?

    • @jherr
      @jherr  Рік тому +1

      Last I looked to get the speedups from Bun the server needed to use specific extension points in Bun, and nothing yet had done that. Could be wrong though.

    • @alsherifkhalaf7385
      @alsherifkhalaf7385 Рік тому

      @@jherr maybe Bun will be ready next year

  • @vipinchaudhary7915
    @vipinchaudhary7915 Рік тому +2

    I would still prefer NextJS. Though, Rust looks fine, I am not a big fan of blowers.

    • @jherr
      @jherr  Рік тому +1

      Blowers?

  • @_y7ya
    @_y7ya Рік тому +7

    Using JQuery created a bit of an unfair comparison. AlpineJS would've made more sense here.

    • @jherr
      @jherr  Рік тому +7

      I did go with vanilla JS later on and that's 0.4Kb. But ok, I'll redo with Alpine and post a short with an update.

  • @dealloc
    @dealloc Рік тому +2

    PHP is nice until you need to return UI from some function. Either you return a string mess, or you opt into output buffering which has its own footguns or end up with some templating abstraction with indirections. There's a reason why XHP and later JSX was invented :)

    • @yungifez
      @yungifez Рік тому +2

      Livewireee would help with this
      Coupled with alpine

    • @dealloc
      @dealloc Рік тому

      @@yungifez Yes, but then you're using a framework just like using React/NextJS.
      My point was that the comparison with RSC and PHP doesn't make much sense, even just for templating. RSC definitely has the upper-hand there.

  • @gencomer
    @gencomer Рік тому +1

    React, i choose you! :D

  • @codokit
    @codokit Рік тому +2

    PHP is great