6 comments

  • sgt29 minutes ago
    Happy they did this. Htmx is a great fit for server rendering - which in many or most cases is what you should do in any case. You can always put a mini VueJS or ReactJS app inside of a template for a very custom interactivity.
    • asdfsa3219 minutes ago
      Putting ReactJS or VueJS for a little interactivity is hardly the correct approach. It makes no sense to bring them in for "a little". What made React and React-like (Angular v2, Vue.js) frameworks stabilise is that they're about the right abstractions and everything else for managing dynamic html converges to about the same thing.
      • sgt6 minutes ago
        In principle I agree that putting React or Vue in for a little interactivity is a bad approach, if the same can be achieved with Htmx, which it usually can.<p>However for some really complex mini apps, that&#x27;s another story. But for the rest of those CRUD pages, you can go simple server side rendered.
        • asdfsa325 minutes ago
          &quot;Complex mini app&quot; is one hell of a concept.
  • Raed6677 minutes ago
    React is probably the wrong FE pattern&#x2F;framework for a forum, I&#x27;m not sure HTMX is the right one though ...
  • Ralfp47 minutes ago
    Archive link: <a href="https:&#x2F;&#x2F;archive.ph&#x2F;bLu1Z" rel="nofollow">https:&#x2F;&#x2F;archive.ph&#x2F;bLu1Z</a>
  • asdfsa3236 minutes ago
    Great, now you can&#x27;t offload your FE to a CDN.<p>But on serious note, htmx is basically a solution in the search of a problem. It is the new hype.<p>Or rather, a solution that overlooks 2 decades of learnings. Yes, for a small set of projects htmx is okay, but even then, where htmx is ideal, static is king, and once static is not good enough, htmx sooner or later starts to feel like the XAML and BPEL soap.<p>The fundamental problem is that it is pretending to be a declarative language while entirely imperative.
    • xutopia1 minute ago
      Sounds like you never worked on complex HTMX systems. They&#x27;re easier to maintain, allow for easy caching of HTML fragments in a page. For higher traffic pages React just fails spectacularly.
    • dajonker13 minutes ago
      This feels like an uninformed, generalized opinion from someone with zero experience on the topic. Have you even used HTMX or a similar approach?<p>Besides the memes, it is absolutely not hype-driven, but hypermedia driven. It asks the question: could HTML be even more powerful than it already is?<p>The creators of HTMX even want to standardize core ideas of HTMX into the official HTML specification: <a href="https:&#x2F;&#x2F;triptychproject.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;triptychproject.org&#x2F;</a> Please read this and reply when you still think it&#x27;s hype.