Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@tanstack/react-query-persist-client
Advanced tools
React bindings to work with persisters in TanStack/react-query
@tanstack/react-query-persist-client is a package that provides utilities to persist and rehydrate the state of React Query across sessions. This can be useful for maintaining the state of your queries even after a page reload or when navigating away from the application.
Persisting Query State
This feature allows you to persist the state of your queries using local storage. The `persistQueryClient` function is used to set up the persistence, and `createWebStoragePersistor` is used to specify the storage mechanism.
import { persistQueryClient } from '@tanstack/react-query-persist-client';
import { createWebStoragePersistor } from '@tanstack/react-query-persist-client/web-storage';
const queryClient = new QueryClient();
const persistor = createWebStoragePersistor({ storage: window.localStorage });
persistQueryClient({ queryClient, persistor });
Rehydrating Query State
This feature allows you to rehydrate the state of your queries from the persisted storage. The `persistQueryClientRestore` function is used to restore the state, ensuring that your queries are in the same state as they were before the page reload or navigation.
import { persistQueryClientRestore } from '@tanstack/react-query-persist-client';
import { createWebStoragePersistor } from '@tanstack/react-query-persist-client/web-storage';
const queryClient = new QueryClient();
const persistor = createWebStoragePersistor({ storage: window.localStorage });
persistQueryClientRestore({ queryClient, persistor });
redux-persist is a library that allows you to persist and rehydrate a Redux store. It provides similar functionality to @tanstack/react-query-persist-client but is specific to Redux. It supports various storage engines and has a flexible configuration.
apollo-cache-persist is a library for persisting and rehydrating the Apollo Client cache. It provides similar functionality to @tanstack/react-query-persist-client but is specific to Apollo Client. It supports multiple storage options and is useful for maintaining the state of GraphQL queries.
react-query is a library for managing server state in React applications. While it does not provide built-in persistence, it can be extended with @tanstack/react-query-persist-client for persistence capabilities. It focuses on fetching, caching, and synchronizing server data.
FAQs
React bindings to work with persisters in TanStack/react-query
The npm package @tanstack/react-query-persist-client receives a total of 225,849 weekly downloads. As such, @tanstack/react-query-persist-client popularity was classified as popular.
We found that @tanstack/react-query-persist-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.