Does anyone implement HTMX with a JavaScript-based server? Most developers here appear to favor languages like Go or Python

I’m feeling worn out by React and eager to simplify my development environment. I’m now exploring the idea of switching to HTMX in conjunction with Node.js as a leaner alternative to my current stack.

I’m curious to know if others have embarked on this transition and what insights they can share about the experience. Have you noticed tangible benefits or encountered any obstacles with this setup? Any details about performance improvements, workflow adjustments, or best practices when combining HTMX with server-side JavaScript would be greatly appreciated.

I integrated HTMX with Node.js in a side project a while back and found it to be a refreshing change from the typical React setup. The experience was largely positive, especially in terms of reducing frontend complexity and streamlining server-client interactions. One challenge was managing asynchronous partial updates without the rich tooling you get in frameworks like React, but overall, the performance gains and simplified code structure were well worth the extra debugging effort. This setup forces you to think more about server-rendered HTML, which can lead to a cleaner, more maintainable codebase over time.

i tinkered with htmx on node a few months back. its less cluttered than react though debugging dynamic deps can be a bit hairy. overall, u get a snappyr app if u handle its quirks. give it a try if u lov minimalism!