awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 रिपॉजिटरी

Awesome GitHub RepositoriesStateful Class Components

Component definitions using classes to manage lifecycle and internal state.

Distinguishing note: Specifically covers class-based component patterns.

Explore 4 awesome GitHub repositories matching user interface & experience · Stateful Class Components. Refine with filters or upvote what's useful.

Awesome Stateful Class Components GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • facebook/reactfacebook का अवतार

    facebook/react

    245,669GitHub पर देखें↗

    React एक JavaScript लाइब्रेरी है, जो कॉम्पोनेंट-आधारित आर्किटेक्चर और यूनिडायरेक्शनल डेटा फ्लो का उपयोग करके यूजर इंटरफेस बनाने के लिए है।

    Defines components as classes that manage lifecycle methods and internal state.

    JavaScriptjavascriptuifrontend
    GitHub पर देखें↗245,669
  • preactjs/preactpreactjs का अवतार

    preactjs/preact

    38,701GitHub पर देखें↗

    Preact is a lightweight declarative user interface library designed for building high-performance web applications. It utilizes a component-based architecture where interfaces are defined as functional or class-based units, relying on a virtual DOM to perform efficient state reconciliation and updates. By prioritizing a minimal footprint, the library enables developers to create modular, predictable, and testable user interfaces while maintaining compatibility with standard browser APIs. The library distinguishes itself through a reactive state engine that leverages signals to track dependenc

    Supports stateful components that manage lifecycle methods and provide access to state.

    JavaScriptcomponentsdomjsx
    GitHub पर देखें↗38,701
  • hotwired/stimulushotwired का अवतार

    hotwired/stimulus

    13,058GitHub पर देखें↗

    Stimulus is a JavaScript behavior framework and client-side logic layer used to add interactive behavior to server-rendered HTML. It functions as a system of DOM component controllers that organize JavaScript logic into classes, allowing developers to enhance server-delivered markup without replacing the rendering process with a client-side framework. The framework uses data attributes to bind JavaScript classes to HTML elements and map DOM events to specific methods through document-level event delegation. It employs a lifecycle manager based on mutation observers to automatically instantiat

    Uses class-based components to encapsulate local state and manage the behavior of HTML elements.

    TypeScript
    GitHub पर देखें↗13,058
  • toddmotto/angularjs-styleguidetoddmotto का अवतार

    toddmotto/angularjs-styleguide

    5,919GitHub पर देखें↗

    This is a style guide for structuring AngularJS applications using a component-based architecture. It provides a set of conventions for organizing code into self-contained modules, each encapsulating its own logic, templates, and routing. The guide promotes a modular application structure built from root, component, common, and feature modules to improve maintainability and reusability. The guide establishes a one-way data flow pattern where parent components pass data to children through bindings, and children communicate changes back up through events. It distinguishes between stateful comp

    Composes components that fetch data from services and delegate mutation to child components.

    angularangularjses2015
    GitHub पर देखें↗5,919
  1. Home
  2. User Interface & Experience
  3. Stateful Class Components

सब-टैग एक्सप्लोर करें

  • Service-Fetching Stateful ComponentsComponents that fetch data from services and delegate mutation to child components without directly altering state. **Distinct from Stateful Class Components:** Distinct from Stateful Class Components: emphasizes data fetching from services and delegation to children, not class-based lifecycle management.