awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

8 مستودعات

Awesome GitHub RepositoriesImmutable State Containers

Data structures that enforce state changes through the creation of new objects rather than modifying existing ones.

Explore 8 awesome GitHub repositories matching data & databases · Immutable State Containers. Refine with filters or upvote what's useful.

Awesome Immutable State Containers GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • pmndrs/zustandالصورة الرمزية لـ pmndrs

    pmndrs/zustand

    58,371عرض على GitHub↗

    Zustand is a state management library that provides a centralized store for managing shared application data. It functions as a reactive container that connects application state to components, allowing them to subscribe to specific slices of data and trigger updates automatically. By utilizing selector-based data access and immutable state updates, the library ensures that components only re-render when their observed data changes, maintaining a predictable and efficient data flow. The library distinguishes itself through a pluggable, middleware-based architecture that allows for the extensi

    Simplifies updates to complex nested data by automating the creation of new, immutable object structures.

    TypeScripthacktoberfesthooksreact
    عرض على GitHub↗58,371
  • facebook/immutable-jsالصورة الرمزية لـ facebook

    facebook/immutable-js

    33,060عرض على GitHub↗

    This is a persistent data structure library for JavaScript that provides collections which prevent the direct mutation of objects and arrays. It serves as an immutable state management tool and functional programming utility, ensuring that data remains unchanged after creation to simplify change detection and state tracking. The library enables the maintenance of application state by producing new versions of data structures during updates. It focuses on efficient data comparison by checking actual content instead of memory references and supports a functional programming workflow to prevent

    Provides immutable state containers that enforce state changes through the creation of new objects.

    TypeScript
    عرض على GitHub↗33,060
  • immerjs/immerالصورة الرمزية لـ immerjs

    immerjs/immer

    28,957عرض على GitHub↗

    Immer is an immutable state management library used to create new versions of data structures. It allows the production of new state by mutating a temporary draft instead of using manual object spreading. The project implements structural sharing to reuse unchanged parts of a data tree between versions, which reduces memory consumption. It also functions as a JSON patch generator to calculate and output the differences between two state versions. To ensure data integrity, the library includes a state mutation protector that freezes data structures to detect and prevent accidental modificatio

    Freezes data structures to detect and prevent accidental modifications to a protected immutable state.

    JavaScriptimmutableimmutablesreducer
    عرض على GitHub↗28,957
  • facebook/draft-jsالصورة الرمزية لـ facebook

    facebook/draft-js

    22,641عرض على GitHub↗

    Draft-js is a framework for building customizable rich text editors within React applications. It functions as a content editable framework that separates the underlying data model from the visual rendering layer, acting as a rich text content engine to manage complex text data and formatting. The project utilizes an immutable state management system to ensure consistent updates and predictable undo history. It manages editor state through persistent data structures, providing an immutable data state manager to prevent accidental mutation. The framework includes capabilities for high perform

    Manages application state through immutable data containers to ensure predictable updates and prevent mutation.

    JavaScript
    عرض على GitHub↗22,641
  • reduxjs/redux-toolkitالصورة الرمزية لـ reduxjs

    reduxjs/redux-toolkit

    11,213عرض على GitHub↗

    Redux Toolkit is a state management toolkit and store configurator designed to simplify the development of Redux applications by reducing boilerplate code. It functions as an immutable state manager and a centralized store configuration system that provides a streamlined workflow for managing global application state. The project distinguishes itself through an automated async action orchestrator that manages the lifecycle of promises by automatically dispatching pending, fulfilled, and rejected actions. It also acts as a normalized state organizer, providing tools to structure complex relati

    Provides an immutable state container that converts mutative syntax into safe immutable operations.

    TypeScript
    عرض على GitHub↗11,213
  • codemirror/devالصورة الرمزية لـ codemirror

    codemirror/dev

    7,820عرض على GitHub↗

    CodeMirror is a browser-based code editor framework and modular extension system used to embed full-featured text editors into web pages. It functions as a syntax tree parsing engine and a language server protocol client, enabling structural language analysis and deep integration with external programming language services. The project is distinguished by its modular architecture, which uses a system of extensions and compartments for dynamic reconfiguration at runtime. It supports real-time collaborative editing and state synchronization through an operational transformation framework, allow

    Implements an immutable data structure for the document and selection to ensure consistent state transitions.

    JavaScript
    عرض على GitHub↗7,820
  • mobxjs/mobx-state-treeالصورة الرمزية لـ mobxjs

    mobxjs/mobx-state-tree

    7,050عرض على GitHub↗

    MobX State Tree is a structured, tree-based state management library for JavaScript applications that combines typed model definitions with reactive snapshots and patch-based change tracking. It provides a reactive state container with runtime and compile-time type safety, where application state is defined as a tree of typed models with collocated actions, computed views, and lifecycle hooks for predictable state mutations. The library is built around an action-centric mutation model that encapsulates all state changes within named functions that directly modify the tree, supported by genera

    Locks models so only actions can modify state, preventing accidental direct mutations.

    TypeScripthacktoberfestmobxmobx-state-tree
    عرض على GitHub↗7,050
  • salesforce/akitaالصورة الرمزية لـ salesforce

    salesforce/akita

    3,672عرض على GitHub↗

    Akita is a JavaScript state management library that provides a system for managing application data and user interface state. It utilizes an observable data store and immutable state containers to synchronize data across interfaces, employing an entity state manager to handle flat collections of objects with unique identifiers. The project distinguishes itself through a comprehensive history management system that supports both global application-wide state reversal and granular, per-entity undo and redo functionality. It also includes a client-side data cache with time-to-live settings to pr

    Uses immutable containers to track state history, enabling robust undo and redo functionality.

    TypeScriptangularjavascriptoop
    عرض على GitHub↗3,672
  1. Home
  2. Data & Databases
  3. Data Management
  4. State and Context Management
  5. Immutable State Containers

استكشف الوسوم الفرعية

  • Mutation Protection1 وسم فرعيEnforcing read-only constraints on immutable containers to prevent unauthorized modification. **Distinct from Immutable State Containers:** Specifically about detecting and preventing mutations of the state container, not the container's internal storage logic.