The creator of Rails on JavaScript FE vs. Classic Server-side Rendering

Sdílet
Vložit
  • čas přidán 27. 07. 2023
  • Where should your logic live? Frontend, backend, somewhere out in space?? David Heinemeier Hansson, creator of Ruby on Rails, talks about what worked for him when you have a small team (and what might work for you). He also tells us a little about Hotwire. Watch the video to find out!
    Check out the home for untold developer stories around open source, careers and all the other cool stuff developers are doing at cult.honeypot.io.
    Honeypot is a developer-focused job platform, on a mission to get developers great jobs. Wanna see what we're all about? Visit honeypot.io to find a job you love.
    To learn more about Honeypot: bit.ly/47clUXJ
    Follow David Heinemeier Hansson:
    Website: dhh.dk/
    Podcast: 37signals.com/podcast/
    Twitter: / dhh
    Follow us:
    Twitter: / honeypotio
    Facebook: / honeypotio
    LinkedIn: / honeypotio
    Instagram: / honeypot.cult
  • Věda a technologie

Komentáře • 66

  • @dencam
    @dencam Před 9 měsíci +59

    Thank you,
    Please give us a longer video on Ruby on Rails Documentary, like the one you did on Vue, Elixir, React.

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

      Yeah there should be one from around 2007 I think.

    • @br3nto
      @br3nto Před 9 měsíci +1

      Ruby is so good!

    • @Honeypotio
      @Honeypotio  Před 9 měsíci +12

      😏

    • @dencam
      @dencam Před 9 měsíci +1

      @@Honeypotio due to public demand 😀

    • @pierreyves.lebrun
      @pierreyves.lebrun Před 7 měsíci

      czcams.com/video/NaEG5Dz7xzM/video.htmlsi=9lJx12kFe8zsV7Lx

  • @lagcisco
    @lagcisco Před 9 měsíci +13

    We need the full conversation, please. So much practical insights

  • @stachowi
    @stachowi Před 9 měsíci +48

    As a web dev for 20+ years, couldn't agree more with him.

  • @siyaram2855
    @siyaram2855 Před 8 měsíci +19

    Dear Honeypot team,
    You are now free of your sin of making React documentary.
    P.S. Please make a documentary on DHH and Hotwire. This man deserve much more attention than those react lunatics.
    He has done more good to startups (and webdev in general) than a boatload of VCs.

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

    SSR with your framework of choise + HTMX seems to be a nice solution these days.

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

    Since you've come to the client side vs server side arena, it's time to expect some Svelte content :)

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

    Cool. Thanks. That's all I wanted to listen.

  • @emilz0r
    @emilz0r Před 9 měsíci +1

    What if my favorite programming language is js/ts?

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

    I agree with David.

  • @vlahunter
    @vlahunter Před 9 měsíci +5

    Is there gonna be a bigger interview like video with DHH ?? Or is that it ?

    • @Honeypotio
      @Honeypotio  Před 9 měsíci +16

      Stay tuned🤭

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

      @@Honeypotio of course!!!! haahahhahahahahah

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

      Thank you from bottom of my heart.

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

    I love this man, The DHH ❤

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

    2:12 when using SSR techniques, I honest don’t know how you would separate front end development from backend development. They are fundamentally tied together. I don’t know why you would want to do that either. Maybe there should be prototyper developers and finisher developers, both full stack, but one gets things implemented and working, the other polishes and cleans and improves the prototype. But I’ve never understood the frontend/backend separation.

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

      The way you would it until recently in next was that you made your backend logic in whatever language and exposed as json api endpoints and then use next for fetching initial data from those apis and render the initial html server side, but basically just writing front end code in next that happen to also run on the server (for the initial fetch and render)

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

      As for the "why", you might have alot of backend logic and alot of frontend logic which are different ways of thinking about an application and you might want experts in each field only focusing on their area without to much need for syncing development other that planning the json interface between the two

    • @br3nto
      @br3nto Před 9 měsíci +1

      @@emilz0r ah yeah, that’s another great point! Many apps are written that way. But API driven sites have the same issues as what I’m talking about. I guess there are three scenarios here: 1) the API and UI are owned by the same team. 2) The API is owned by a different team in the same company. 3) the API is owned by a team in a different company. For 1, it would be super slow to make changes with separate frontend and backend development. For 2 and 3, the UI would never talk directly to those APIs, there would be a backend that consumes the other teams APIs first, which manipulates and/or combines with additional data before presenting in the UI layer. Because the data driving the site and the UI to present that data are fundamentally tied together, development will always be quicker if the backend driving the UI and the UI are developed in unison. So it should be done by the same developer and not different developers with different skill sets. I don’t see how it can be effective to only have front end devs and only have backend devs. Especially when in the same organisation. It would be super slow to make changes for a team that separates backend development from frontend development. It’s always better to have have devs working on both. If you want to talk about division of focus due to complexity in the code, different teams of devs could focus on certain parts on the app. Eg one team focuses on a particular tool or module of a site, while another team focuses on the platform aspect of a site, like authentication and authorisation and how each feature and new features can hook into that platform seamlessly. Also, yeah you may have a very complex function in the backend, but that functionality would be handled by an expert team, the Integration of that into the app would be done by devs of the site, they would develop the connections to the complex functionality within the backend, and also build the front end. Effectively, the complex app would have an API of some sorts, but it’s the backend code that wraps that API, but the UI should be built by the same people that manage the backend wrapper around the API to the complex functionality.

    • @sleekism
      @sleekism Před 9 měsíci +1

      @@br3nto is the efficiency argument based on data? It seems to make sense but have you experienced both paradigms in a working environment?

    • @br3nto
      @br3nto Před 9 měsíci +1

      @@sleekism no data. I’ve only been on the end of full stack… so I honestly don’t know how front end and back end development can be separated how communication and coordination of work can be done efficiently and effectively in a way that doesn’t just add time in comparison. When you develop the backend and front end together, nothing needs to be coordinated because you just do it together. Happy to hear others insights into how it works.

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

    Great advice

  • @rickdg
    @rickdg Před 9 měsíci +5

    I too enjoy sending at least five network requests to filter a list through a search box.

    • @emilz0r
      @emilz0r Před 9 měsíci +1

      I enjoy more filtering a list by refreshing the entire page for each click and send the user to the top of the page and make them find the list filtered further down themselves

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

      @@emilz0r This is a bit tong-in-cheek as we know that for local interactions SSR folk still use JavaScript. David is just making making a line on the sand to stand on one side.

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

      @@rickdg oh, I see now. You were promoting not doing everything on the server because you don't need to involve the server in everything, while I though you were doing the opposite because using js (for sending Ajax requests) are bad and you just wanted to drop js altogether

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

    Rudy on Rails

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

    Why is he sitting in a door way?! 😆

  • @superfoo
    @superfoo Před 9 měsíci +19

    Serverside applications in my experiences tend to get less snappy, less userfriendly cause they just too far from the input and events in the browser.
    Also Backend Devs tend to Fokus on what's the easiest for the architecture they've built and not what makes most sense and value for the user. There is even more to say I guess. Will create a talk about it maybe

    • @emilz0r
      @emilz0r Před 9 měsíci +4

      I agree for applications, but most web pages are just pretty content with little user interaction other than links, so for those solutions it would make sense to make everything backend

    • @superfoo
      @superfoo Před 9 měsíci +4

      @@emilz0r yes that's true as well. If it's a website I pre render statically. Done. I usually differ between apps and websites

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

    Hell yes, server side rules.

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

    He's absolute marmite but the guy speaks a lot of sense

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

    I think like you, why use Javascript for frontend that has such a complicated syntax

  • @HartleySan
    @HartleySan Před 9 měsíci +4

    Always preferred Laravel over Rails, but I do appreciate DHH's sentiment here, and I agree that the pendulum has swung too far towards FE everything these days. That said, some FE code is not a bad thing (although I'm not a fan of how Hotwire does it).

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

    There are values in both. JS can be used to reduce network roundtrip, UX and SSR is great for speed rendering and better at security management.
    So.. SSR framework FTW.

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

    I've heard of this guy before 🤔

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

    Ah one of of my favorite people in the world

  • @jmoz
    @jmoz Před 4 měsíci

    Backend vs frontend is also a battle of millennials vs zoomers

  • @blessedonekobo
    @blessedonekobo Před 9 měsíci +3

    HTML is great until you need a non-web client like a mobile app

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

    Palabras de un NO PROGRAMADOR

  • @marusdod3685
    @marusdod3685 Před 9 měsíci +1

    meh. im just gonna stick with Next.Js

  • @nanonorthlabs3375
    @nanonorthlabs3375 Před 9 měsíci +3

    Man there is literally nothing more trash than Ruby on Rails. It’s like the guy made it for himself, the adoption is weak, and nobody likes the syntax

    • @MarcoDamaceno
      @MarcoDamaceno Před 9 měsíci +8

      Nobody? Not me included.

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

      I love Rails

    • @dencam
      @dencam Před 9 měsíci +3

      I love Rails

    • @doubleandy
      @doubleandy Před 9 měsíci +1

      What don't you like about the syntax?

    • @dencam
      @dencam Před 9 měsíci +3

      @@doubleandy what do you hate about Ruby?
      It pays my bills, that is why I love it

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

    Ugh this guy. Not a great look Honeypot. Rails is fine, Ruby is fine, and the debate about SSR is great. But not from DHH.

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

      Why?

    • @consumedata4544
      @consumedata4544 Před 9 měsíci +8

      @@nafcho1​​⁠because he doesn’t allow political debates to take place at his company. This is apparently “evil” in the eyes of politically deranged Americans, even though it’s literally considered polite in every other part of the world.

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

      @@consumedata4544yeah, imagine wanting the people who you pay to work actually produce something, rather than engaging in endless political debates that never change anyone’s minds! 🤯

    • @chrisrobbo
      @chrisrobbo Před 6 měsíci +1

      ​@@consumedata4544 who wants to debate politcs haha. I wouldn't want to do that in or out of the workplace, but especially not in the workplace