awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

Awesome GitHub RepositoriesFramework Change Detection Optimizations

Techniques for tuning how web frameworks track state changes to reduce unnecessary UI re-renders.

Distinct from Reactive Change Detection: Focuses specifically on tuning framework-level change detection cycles (like Angular's Zone.js) rather than general reactive state monitoring.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Framework Change Detection Optimizations. Refine with filters or upvote what's useful.

Awesome Framework Change Detection Optimizations GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • mgechev/angular-performance-checklistAvatar mgechev

    mgechev/angular-performance-checklist

    4,134Vezi pe GitHub↗

    Acest proiect este o referință tehnică și un ghid pentru optimizarea performanței aplicațiilor Angular. Oferă o listă de verificare cuprinzătoare pentru îmbunătățirea vitezei și eficienței, concentrându-se pe optimizarea bundle-urilor, bunele practici de randare și execuția la runtime. Ghidul acoperă o gamă largă de diferențiatori, inclusiv implementarea strategiilor de tip progressive web app prin service workers și caching offline. De asemenea, detaliază metode pentru îmbunătățirea timpilor de încărcare percepuți folosind randarea pe partea de server (SSR) și shell-uri de aplicație. Repository-ul oferă îndrumări privind domenii mai largi de capabilități, cum ar fi reglarea detecției schimbărilor (change detection), utilizarea web worker-ilor pentru descărcarea calculelor grele și gestionarea DOM-ului prin virtual scrolling. De asemenea, acoperă reducerea dimensiunii bundle-ului prin tree-shaking, minificare și lazy-loading module splitting.

    Reducing unnecessary browser re-renders by optimizing how Angular tracks state changes and executes logic outside of zones.

    Vezi pe GitHub↗4,134
  • mgechev/angular2-style-guideAvatar mgechev

    mgechev/angular2-style-guide

    1,195Vezi pe GitHub↗

    The repository contains a curated collection of coding conventions, architectural patterns, and best practices designed for developing component-based web applications using Angular and TypeScript. It functions as an architecture manual establishing consistent patterns across development teams, covering application structure, component design, and code quality enforcement. The guidelines define domain-driven file organization and module encapsulation strategies that group project assets into bounded contexts with dedicated root facades to keep large codebases manageable and shorten import pat

    Angular components maximize rendering performance by applying push-based change detection strategies and handling immutable input data.

    angularbest-practicesdeprecated
    Vezi pe GitHub↗1,195
  • vobyjs/vobyAvatar vobyjs

    vobyjs/voby

    907Vezi pe GitHub↗

    Voby is a signal-based framework for building reactive user interfaces. It utilizes fine-grained observables to track data dependencies and trigger direct updates to the document object model, bypassing the need for a virtual DOM reconciliation process. By wrapping state in proxies, the framework automatically intercepts mutations to ensure consistent data flow across the application. The framework distinguishes itself through a focus on performance and lifecycle precision. It employs reactive update batching to group state changes into single execution cycles, minimizing redundant operations

    Filters reactive data streams to trigger UI updates only when specific values change, preventing unnecessary re-renders.

    TypeScriptfastfine-grainedframework
    Vezi pe GitHub↗907
  1. Home
  2. Software Engineering & Architecture
  3. Reactive Change Detection
  4. Framework Change Detection Optimizations

Explorează sub-etichetele

  • Zone-Based OptimizationsTuning logic execution relative to the framework's asynchronous tracking zone to prevent unnecessary re-renders. **Distinct from Framework Change Detection Optimizations:** Specifically addresses the interaction with Zone.js in Angular, rather than generic framework change detection tuning.