awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Scope and Hierarchy Management · Awesome GitHub Repositories

3 repos

Awesome GitHub RepositoriesScope and Hierarchy Management

Architectural patterns for organizing state based on component tree positioning and encapsulation boundaries, rather than global store access.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Scope and Hierarchy Management. Refine with filters or upvote what's useful.

  1. Home
  2. Software Engineering & Architecture
  3. Software Architecture
  4. Architectural Patterns
  5. Layering & Presentation
  6. Application Layer Architectures
  7. State Management Architectures
  8. Scope and Hierarchy Management

Awesome Scope and Hierarchy Management GitHub Repositories

Describe the repository you're looking for…
We'll search the best matching repositories with AI.
  • facebook/react

    facebook/react

    243,179GitHubView on GitHub↗

    React is a JavaScript library for building user interfaces based on a component-driven architecture and unidirectional data flow.

    Consolidates shared data within a common ancestor to establish a single source of truth across the hierarchy.

    JavaScriptjavascriptuifrontend
  • angular/angular.js

    angular/angular.js

    58,970GitHubView on GitHub↗

    AngularJS is a structural framework for building dynamic web applications by extending standard HTML with custom tags and attributes. It operates as a client-side template engine that transforms declarative markup into interactive components, organizing application logic through a model-view-controller pattern. By util

    Facilitates data access across component boundaries by nesting state objects into a tree structure that allows children to inherit parent models.

    JavaScript
  • pmndrs/zustand

    pmndrs/zustand

    57,057GitHubView on 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 acce

    Encapsulates state within private closure scopes to maintain a persistent, single source of truth across component lifecycles.

    TypeScripthacktoberfesthooksreact

Explore sub-tags

  • Closure-Based State EncapsulationsTechnique for encapsulating state within private closure scopes to maintain data persistence across component lifecycles.
  • Hierarchical ScopesStructural approach that organizes application state into nested trees to facilitate data access across component hierarchies.
  • State Lifting PatternsPattern for sharing data between components by moving state to a common parent in the component tree.