awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • kriskowal/qAvatar de kriskowal

    kriskowal/q

    15,030Ver en 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
    Ver en GitHub↗15,030
  • developit/workerizeAvatar de developit

    developit/workerize

    4,378Ver en GitHub↗

    Workerize es un cargador de módulos de web worker y descargador del hilo principal. Funciona como un envoltorio de proxy asíncrono que permite que los módulos de JavaScript se ejecuten en workers en segundo plano, evitando bloqueos de la UI del navegador al delegar tareas computacionalmente costosas a hilos separados. El proyecto utiliza una interfaz basada en proxy para llamar a funciones dentro de un worker en segundo plano como si fueran llamadas asíncronas locales. Este mecanismo permite la ejecución de módulos en workers paralelos para mantener la capacidad de respuesta del hilo principal. El sistema cubre la ejecución asíncrona de módulos y la integración de web workers, centrándose en la optimización del hilo principal al mover la lógica pesada fuera del hilo de ejecución primario.

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

    JavaScript
    Ver en GitHub↗4,378
  1. Home
  2. Programming Languages & Runtimes
  3. Proxy Objects
  4. Asynchronous Proxy Accessors

Explorar subetiquetas

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