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
·
developit avatar

developit/greenlet

0
View on GitHub↗
4,689 estrellas·97 forks·JavaScript·4 vistasnpm.im/greenlet↗

Greenlet

Greenlet es un ejecutor asíncrono multihilo y ejecutor de tareas de web worker. Sirve como envoltorio de ejecución que descarga cálculos pesados a trabajadores en segundo plano para mantener la capacidad de respuesta de la interfaz de usuario y evitar que el hilo de ejecución principal se bloquee.

El proyecto incluye un manejador de objetos transferibles diseñado para mover grandes buffers de datos entre hilos. Este mecanismo evita la sobrecarga de copiar memoria para optimizar la transferencia de datos.

La biblioteca cubre la gestión de web workers, facilitando el aislamiento de tareas asíncronas y la descarga del hilo principal.

Features

  • Web-Worker Threading - Offloads heavy computations to background Web Workers to maintain user interface responsiveness.
  • Background Threading - Executes logic in separate background threads to prevent the main application thread from freezing.
  • Asynchronous Worker Functions - Provides a way to define and invoke functions within worker threads asynchronously from the main thread.
  • Web Worker Execution - Simplifies the execution of scripts in background threads without manual worker script management.
  • Asynchronous Task Executors - Manages the scheduling and execution of asynchronous tasks on thread pools to isolate execution.
  • Async Executor Wrappers - Serves as an execution wrapper that offloads heavy computation to background workers to maintain UI responsiveness.
  • JavaScript Worker Threads - Executes JavaScript in separate OS threads to ensure the main UI thread remains free for user interactions.
  • Main Thread Offloading - Implements strategies for moving computationally expensive tasks from the main UI thread to background web workers.
  • High-Performance Data Transfer - Implements efficient, low-latency data movement between threads using transferable objects.
  • Inter-Thread Data Transfers - Moves large data buffers between threads using transferable objects to eliminate expensive memory copying.
  • Platform Compatibility Tools - Move async functions to web workers.
  • Web Worker Management - Moving async functions to separate threads.

Historial de estrellas

Gráfico del historial de estrellas de developit/greenletGráfico del historial de estrellas de developit/greenlet

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Alternativas open-source a Greenlet

Proyectos open-source similares, clasificados según cuántas características comparten con Greenlet.
  • developit/workerizeAvatar de developit

    developit/workerize

    4,378Ver en GitHub↗

    Workerize is a web worker module loader and main thread offloader. It functions as an asynchronous proxy wrapper that allows JavaScript modules to run in background workers, preventing browser UI freezes by delegating computationally expensive tasks to separate threads. The project utilizes a proxy-based interface to call functions inside a background worker as if they were local asynchronous calls. This mechanism enables the execution of modules in parallel workers to maintain main thread responsiveness. The system covers asynchronous module execution and web worker integration, focusing on

    JavaScript
    Ver en GitHub↗4,378
  • andywer/threads.jsAvatar de andywer

    andywer/threads.js

    3,526Ver en GitHub↗

    threads.js is a JavaScript worker thread library and asynchronous task orchestrator designed to offload CPU-intensive tasks to background threads. It functions as a cross-platform worker pool and a TypeScript worker runner that automatically transpiles and executes TypeScript files within separate threads. The project distinguishes itself by providing a unified worker API that allows for cross-platform execution across different JavaScript environments. It includes a specialized worker data serialization tool to pass complex class instances and binary data between threads, and supports inlini

    TypeScriptisomorphic-javascriptjavascriptmultithreading
    Ver en GitHub↗3,526
  • mgechev/angular-performance-checklistAvatar de mgechev

    mgechev/angular-performance-checklist

    4,134Ver en GitHub↗

    This project is a technical reference and guide for optimizing the performance of Angular applications. It provides a comprehensive checklist for improving speed and efficiency by focusing on bundle optimization, rendering best practices, and runtime execution. The guide covers a wide array of differentiators including the implementation of progressive web app strategies through service workers and offline caching. It also details methods for improving perceived load times using server-side rendering and application shells. The repository provides guidance on broader capability areas such as

    Ver en GitHub↗4,134
  • sqldelight/sqldelightAvatar de sqldelight

    sqldelight/sqldelight

    6,827Ver en GitHub↗

    SQLDelight is a Kotlin database library that validates SQL schema, statements, and migrations at compile time, generating type-safe Kotlin query functions from labeled SQL files. It treats SQL as the source of truth for database definitions, catching schema errors during the build process before they reach production. The library supports multiple database dialects including SQLite, MySQL, PostgreSQL, HSQL, and H2, and generates platform-specific code for Android, iOS, JVM, and JavaScript targets. It provides a platform-specific driver abstraction that handles database connectivity difference

    Kotlinkotlin-multiplatformsqlsqldelight
    Ver en GitHub↗6,827
Ver las 30 alternativas a Greenlet→

Preguntas frecuentes

¿Qué hace developit/greenlet?

Greenlet es un ejecutor asíncrono multihilo y ejecutor de tareas de web worker. Sirve como envoltorio de ejecución que descarga cálculos pesados a trabajadores en segundo plano para mantener la capacidad de respuesta de la interfaz de usuario y evitar que el hilo de ejecución principal se bloquee.

¿Cuáles son las características principales de developit/greenlet?

Las características principales de developit/greenlet son: Web-Worker Threading, Background Threading, Asynchronous Worker Functions, Web Worker Execution, Asynchronous Task Executors, Async Executor Wrappers, JavaScript Worker Threads, Main Thread Offloading.

¿Qué alternativas de código abierto existen para developit/greenlet?

Las alternativas de código abierto para developit/greenlet incluyen: developit/workerize — Workerize is a web worker module loader and main thread offloader. It functions as an asynchronous proxy wrapper that… andywer/threads.js — threads.js is a JavaScript worker thread library and asynchronous task orchestrator designed to offload CPU-intensive… mgechev/angular-performance-checklist — This project is a technical reference and guide for optimizing the performance of Angular applications. It provides a… sqldelight/sqldelight — SQLDelight is a Kotlin database library that validates SQL schema, statements, and migrations at compile time,… googlechromelabs/comlink — Comlink is a remote procedure call library that transforms message-based communication into asynchronous function… alasql/alasql — AlaSQL is a JavaScript SQL database engine that allows for the filtering, grouping, and joining of in-memory object…