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

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

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

3 مستودعات

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

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

    mgechev/angular-performance-checklist

    4,134عرض على GitHub↗

    هذا المشروع عبارة عن مرجع تقني ودليل لتحسين أداء تطبيقات Angular. يوفر قائمة مرجعية شاملة لتحسين السرعة والكفاءة من خلال التركيز على تحسين الحزم (bundle)، وأفضل ممارسات العرض، وتنفيذ وقت التشغيل. يغطي الدليل مجموعة واسعة من الميزات بما في ذلك تنفيذ استراتيجيات تطبيقات الويب التقدمية (PWA) من خلال عمال الخدمة (service workers) والتخزين المؤقت دون اتصال. كما يفصل طرق تحسين أوقات التحميل المتصورة باستخدام العرض من جانب الخادم (SSR) وأغلفة التطبيقات. يوفر المستودع توجيهاً حول مجالات إمكانيات أوسع مثل ضبط اكتشاف التغيير، واستخدام عمال الويب (web workers) لتفريغ الحسابات الثقيلة، وإدارة DOM عبر التمرير الافتراضي. كما يغطي تقليل حجم الحزمة من خلال التخلص من الكود غير المستخدم (tree-shaking)، والضغط، وتقسيم الوحدات بالتحميل الكسول.

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

    عرض على GitHub↗4,134
  • mgechev/angular2-style-guideالصورة الرمزية لـ mgechev

    mgechev/angular2-style-guide

    1,195عرض على 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
    عرض على GitHub↗1,195
  • vobyjs/vobyالصورة الرمزية لـ vobyjs

    vobyjs/voby

    907عرض على 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
    عرض على GitHub↗907
  1. Home
  2. Software Engineering & Architecture
  3. Reactive Change Detection
  4. Framework Change Detection Optimizations

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

  • 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.