awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • preactjs/preactpreactjs 的头像

    preactjs/preact

    38,701在 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
    在 GitHub 上查看↗38,701
  • nodejs/nannodejs 的头像

    nodejs/nan

    3,351在 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
    在 GitHub 上查看↗3,351
  1. Home
  2. Web Development
  3. Component References

探索子标签

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