ClearX is an alternative way to Redux and MobX to maintain the application state and provides a simple interface to bind it to UI components. It has utilities to set or get deep properties of nested data using paths.
A lightweight state container based on Redux
Small footprint complements Preact nicely (unistore unistore/preact is ~650b) - Familiar names and ideas from Redux-like libraries - Useful data selectors to extract properties from state - Portable actions can be moved into a common place and imported - Functional actions are just reducers -…
Apollo Client is a GraphQL client library and data fetching framework used to request data from a GraphQL server and synchronize that state within a frontend application. It functions as a remote state manager and a local state management tool, allowing developers to define client-side schemas and resolvers for data that does not reside on a remote server. The project features a normalized GraphQL cache that identifies objects by ID to ensure referential equality and consistent data updates across different queries. It also includes a GraphQL API mocking tool to simulate server responses and