Tanner Linsley
@tannerlinsley.com
16K followers 69 following 450 posts
⚔️ Sir Tan @TanStack.com 🎉 TypeScript 🌎 Web ⚛️Open Source Software💡UI/UX/DX 💼Co-Founder @NozzleIO 👨‍👩‍👧‍👦@Ch_JesusChrist
Posts Media Videos Starter Packs
tannerlinsley.com
🚀 Announcing TanStack.com Start v1 Release Candidate!

Upgrades ↓

✨ Unified Route Tree: no more server-specific files
🔐 Type-safe middleware & server context upgrades
🛡 CSP/nonce support
⚡ Now works with any native Vite Env plugin
🌀 Zero-JS: any server handler can render!
TanStack | High Quality Open-Source Software for Web Developers
Headless, type-safe, powerful utilities for complex workflows like Data Management, Data Visualization, Charts, Tables, and UI Components.
TanStack.com
tannerlinsley.com
No news. Only goals.
Reposted by Tanner Linsley
syncconf.bsky.social
Tanner Linsley (@tannerlinsley.com) creator of @tanstack.com, is bringing his vision for app dev to Sync Conf 2025.

From TanStack DB to mainstream DX, he’ll share where sync belongs in the next wave of software.
Reposted by Tanner Linsley
tkdodo.eu
There are currently 42 People in the TanStack Discord with a Maintainer Role. This is excluding @tannerlinsley.com himself because he has a special role 😂. Amazing to see how the community has grown over the years 🙌
Lots of Maintainer Badges
Reposted by Tanner Linsley
adamrackis.bsky.social
I'm working with the TanStack Start team on a slight tweak that should enable some really nice features I can't wait to talk about.

This is an amazing community to collaborate with. Incredible people, shipping top notch tools 🚀
Reposted by Tanner Linsley
viteconf.org
⚡ Speaker highlight: Tanner Linsley, Creator of TanStack

No matter if it is Routing, State Management, or a Vite-based Framework: The TanStack got your covered.

And @tannerlinsley.com, the mind behind TanStack Query, Router & Start is joining us at ViteConf

Get ready to meet the TanStack creator!
ViteConf 2025 Speaker card of Tanner Linsley, the Creator of TanStack
Reposted by Tanner Linsley
kyle.bricolage.io
TanStack DB now has @svelte.dev support!
<script lang="ts">
import { useLiveQuery } from "@tanstack/svelte-db"
import { eq } from "@tanstack/db"
import { todoCollection } from "$lib/collections"

const todosQuery = useLiveQuery((query) =>
  query
    .from({ todos: todoCollection })
    .where(({ todos }) => eq(todos.completed, false))
)
</script>


<List items={todosQuery.data} />
Reposted by Tanner Linsley
tkdodo.eu
Never thought I'd see that day, but thanks to AI, @tanstack.com react-query now has, for the first time ever, more downloads than react-redux 🤯
@tanstack/react-query: 10,552,149
react-redux: 10,548,437
tannerlinsley.com
Well you said it yourself: it’s still early. Come back and try it again when we 1.0 please.
tannerlinsley.com
Most likely. Mostly waiting on vite support to finish out our designs.
tannerlinsley.com
It will soon. We’re building it right now.
tannerlinsley.com
What does this mean?
Reposted by Tanner Linsley
dominiksumer.com
yesterday I gave TanStack Start a try for the first time

coming from TanStack Router, there's almost no transition, they use the same concepts!

and for smaller apps where you don't want to spin up a separate backend, the whole process of creating server functions is soo smooth!
tannerlinsley.com
And without explanation, this opinion is DOA.
tannerlinsley.com
Correct. This works for anything inside the server function. I think Dan is probably asking more about dependencies outside of the function, to which @manuelschiller.bsky.social is building a marker that you can attach to imports/vars that will fail the build if they appear in the client bundle.