Best of tanstackOctober 2025

  1. 1
    Article
    Avatar of swizecswizec.com·27w

    React, HTMX, and TanStack/Start

    Modern UI frameworks are shifting away from JSON APIs toward server-rendered markup. React Server Components, HTMX, Hotwire, Remix's iframe approach, and TanStack's SPA-on-SSR model all embrace this pattern. HTMX works well for modernizing legacy Jinja+jQuery UIs through incremental rewrites, React Islands handle highly interactive components, and TanStack delivers interactive experiences with fast initial paint. This architectural shift represents a return to hyper-text transfer while maintaining modern interactivity.

  2. 2
    Article
    Avatar of logrocketLogRocket·28w

    How to use TanStack DB to build reactive, offline-ready React apps

    TanStack DB is a reactive, client-side database that simplifies state management in React apps through local-first architecture, live queries, and optimistic updates. The tutorial demonstrates building a task management app using TanStack DB's SQL-like query syntax, automatic reactivity through useLiveQuery hooks, and instant UI updates without manual state management. Key features include collections for normalized data storage, differential dataflow engine for efficient updates, and seamless offline support with zero network dependency for local-only collections.