Overview
mobx-tanstack-query is a library for integration tanstack-query library with MobX
.
Combines the power of TanStack Query
’s caching and async state management with MobX
’s reactivity.
Motivation
-
Universal Approach
Enables usingTanStack Query
inMobX
-driven projects, including non-React environments (e.g., Vue, Svelte, or vanilla JS). -
State Synchronization
Automatically syncsTanStack Query
’s cache state withMobX
reactive systems, ensuring data consistency. -
Flexible Integration
Lets you useTanStack Query
’s familiar API alongsideMobX
reactions for automatic cache invalidation and refetching. -
Performance Optimization
CombinesTanStack Query
’s efficient query caching withMobX
’s granular updates to minimize unnecessary re-renders.
Pros and cons
Pros:
MobX
reactivity intergration withTanStack Query
power.
Cons:
- Requires basic understanding of
MobX
reactions. - Adds a small bundle size overhead (~2KB) for the integration layer.
- Some
React
-specificTanStack Query
features are unavailable.