3 مستودعات
Waiting for persisted state to be decoded before starting a provider so it starts with stored data instead of a fresh request.
Distinct from Persistent Storage Providers: Distinct from Persistent Storage Providers: focuses on initialization timing rather than general storage management.
Explore 3 awesome GitHub repositories matching data & databases · Persisted State Initialization. Refine with filters or upvote what's useful.
Redux Persist is a state management utility designed to maintain application data across sessions by synchronizing state with local storage. It functions as a middleware-based engine that automatically saves and restores application state, ensuring that user sessions remain intact after page refreshes or application restarts. The library distinguishes itself through granular control over the persistence lifecycle and data structure. It supports recursive state tree partitioning, allowing developers to apply distinct storage configurations and filtering rules to specific branches of the applic
Provides strategies to merge saved data with the current application state to handle updates during the initial loading process.
Riverpod is a reactive state management framework for Dart that manages application state through providers which automatically track dependencies and rebuild dependents when values change. It functions as an asynchronous data caching library, caching results of async operations and exposing loading, error, and data states to widgets without manual future handling. The framework includes a provider composition system that combines multiple providers into derived values that recompute automatically when any dependency changes, along with code generation for state providers that reduces boilerpl
Initializes providers from persisted state by waiting for decoding before starting, enabling stored data reuse.
Little State Machine is a lightweight state management library for React applications that provides a centralized data store for managing shared application information. It utilizes a context-based provider pattern to distribute state across the component tree, ensuring consistent data access without the need for manual property drilling. The library distinguishes itself through built-in support for automatic browser storage persistence, which synchronizes the in-memory state with local or session storage to maintain data continuity across page refreshes. It also incorporates middleware-drive
Configures the centralized store with middleware and persistence settings for application-wide state management.