awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesComponent References

Provides stable object references for persisting values across component renders.

Distinguishing note: Focuses on stable reference persistence rather than reactive state.

Explore 2 awesome GitHub repositories matching web development · Component References. Refine with filters or upvote what's useful.

Awesome Component References GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • preactjs/preactAvatar de preactjs

    preactjs/preact

    38,701Voir sur GitHub↗

    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

    Stores DOM nodes or mutable values in stable references that persist across renders.

    JavaScriptcomponentsdomjsx
    Voir sur GitHub↗38,701
  • nodejs/nanAvatar de nodejs

    nodejs/nan

    3,351Voir sur GitHub↗

    This project is a compatibility layer and abstraction library for building native C++ addons for Node.js. It provides a consistent C++ API that allows a single codebase to compile against multiple versions of the V8 JavaScript engine by hiding version-specific differences behind macros and inline functions. The toolkit differentiates itself through specialized wrappers and managers, including a monadic wrapper for handles to avoid explicit null checks, a persistent reference manager for objects that must survive handle scope disposal, and a buffer abstraction API for version-compatible memory

    Holds V8 object references that outlive handle scope disposal until they are explicitly freed.

    C++nodenodejs
    Voir sur GitHub↗3,351
  1. Home
  2. Web Development
  3. Component References

Explorer les sous-tags

  • Persistent Handle ManagementMechanisms for creating object references that survive the disposal of handle scopes. **Distinct from Component References:** Distinct from component references as it deals with V8 engine persistent handles, not UI component state.