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

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

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

2 个仓库

Awesome GitHub RepositoriesAsynchronous Proxy Accessors

Proxy objects that wrap properties and methods to return promises instead of immediate values.

Distinct from Proxy Objects: Focuses on the asynchronous nature of the property access/method call via promises, not just general interception.

Explore 2 awesome GitHub repositories matching programming languages & runtimes · Asynchronous Proxy Accessors. Refine with filters or upvote what's useful.

Awesome Asynchronous Proxy Accessors GitHub Repositories

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

    kriskowal/q

    15,030在 GitHub 上查看↗

    q is a JavaScript promise library and asynchronous flow controller designed to manage non-blocking operations. It serves as a system for coordinating parallel tasks and sequencing asynchronous workflows through task chaining and error propagation. The library distinguishes itself with specialized debugging tools that capture long stack traces across asynchronous jumps and monitor unhandled rejections to prevent silent failures. It also functions as a remote object proxy, forwarding method calls to remote targets and routing responses back through promises. The project provides comprehensive

    Allows asynchronous manipulation of proxied object properties and methods using promise-based getters and setters.

    JavaScript
    在 GitHub 上查看↗15,030
  • developit/workerizedevelopit 的头像

    developit/workerize

    4,378在 GitHub 上查看↗

    Workerize 是一个 Web Worker 模块加载器和主线程卸载器。它作为一个异步代理包装器,允许 JavaScript 模块在后台 Worker 中运行,通过将计算密集型任务委托给单独的线程来防止浏览器 UI 冻结。 该项目利用基于代理的接口来调用后台 Worker 内部的函数,就像它们是本地异步调用一样。这种机制使得能够在并行 Worker 中执行模块,以保持主线程的响应性。 该系统涵盖了异步模块执行和 Web Worker 集成,专注于通过将繁重逻辑移出主执行线程来优化主线程。

    Provides a proxy-based interface that allows worker functions to be called as if they were local asynchronous calls.

    JavaScript
    在 GitHub 上查看↗4,378
  1. Home
  2. Programming Languages & Runtimes
  3. Proxy Objects
  4. Asynchronous Proxy Accessors

探索子标签

  • Worker-Thread ProxiesProxy objects specifically designed to bridge the main thread and background workers via promises. **Distinct from Asynchronous Proxy Accessors:** Specifically targets the thread bridge for function invocation rather than general property accessors.