You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tagline: `A reactive client store for building super fast apps on sync`,
17
18
description: `TanStack DB extends TanStack Query with collections, live queries and optimistic mutations that keep your UI reactive, consistent and blazing fast 🔥`,
<div>Typed sets of objects that can mirror a backend table or be populated with a filtered view or result set, such as <code>pendingTodos</code> or <code>decemberNewTodos</code>.
56
-
Collections are just JavaScript data — load them on demand and define as many as you need.
55
+
<div>
56
+
Collections are typed sets of objects. Sync or load data into them.
57
+
Query across them with live queries and write locally to them using
58
+
optimistic mutations.
57
59
</div>
58
60
),
59
61
},
60
62
{
61
63
title: 'Live Queries',
62
64
icon: <FaBoltclassName={twMerge(textStyles)}/>,
63
65
description: (
64
-
<div>Queries run reactively against and across collections with support for joins, filters and aggregates. They're powered by differential dataflow: query results update incrementally, not by re-running the whole query.</div>
66
+
<div>
67
+
Live queries run reactively against and across collections. They're
68
+
super fast, powered by differential dataflow, with support for joins,
69
+
filters and aggregates.
70
+
</div>
65
71
),
66
72
},
67
73
{
68
-
title: 'Transactional mutators',
74
+
title: 'Optimistic mutations',
69
75
icon: <FaCogsclassName={twMerge(textStyles)}/>,
70
76
description: (
71
-
<div>Batch and stage local changes across collections with immediate application of local optimistic updates. Then sync transactions to the backend with automatic rollbacks and management of optimistic state.</div>
77
+
<div>
78
+
Batch and stage instant local changes across collections. Sync
79
+
transactions to the backend with automatic management of rollbacks and
0 commit comments