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
·

4 repositorios

Awesome GitHub RepositoriesAsynchronous Route Mapping

Mapping HTTP request paths to asynchronous handler functions.

Distinct from Coroutine Frameworks: Focuses on the mapping of web routes to async handlers rather than general coroutine synchronization primitives.

Explore 4 awesome GitHub repositories matching web development · Asynchronous Route Mapping. Refine with filters or upvote what's useful.

Awesome Asynchronous Route Mapping GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • encode/starletteAvatar de encode

    encode/starlette

    12,397Ver en GitHub↗

    Starlette is an asynchronous web framework and toolkit for building high-performance web services based on the ASGI specification. It serves as a lightweight foundation for creating web applications with a focus on asynchronous request and response handling. The framework provides specialized toolkits for managing persistent bidirectional WebSocket communication and an asynchronous HTTP server toolkit for routing and middleware. It distinguishes itself by offering a non-blocking background task queue that executes functions after a response has been sent to the client. The project covers a b

    Provides a routing system that maps incoming HTTP paths to asynchronous coroutines.

    Python
    Ver en GitHub↗12,397
  • vercel/microAvatar de vercel

    vercel/micro

    10,618Ver en GitHub↗

    Micro is a Node.js HTTP microservices framework used to build asynchronous web servers. It enables the creation of lightweight services that handle requests and responses through single-purpose functions to reduce operational footprint and latency. The framework functions as a JSON API backend and a WebSocket communication server, allowing for the establishment of bidirectional socket connections for real-time data updates and instant messaging. Its capability surface covers HTTP request processing, including the parsing of JSON and URL-encoded request bodies. It also supports external API i

    Maps incoming HTTP requests to specific asynchronous handler functions to create lightweight and isolated service logic.

    TypeScriptasyncawaitmicro
    Ver en GitHub↗10,618
  • hacksoftware/django-styleguideAvatar de HackSoftware

    HackSoftware/Django-Styleguide

    6,209Ver en GitHub↗

    Este proyecto proporciona estándares arquitectónicos y patrones para organizar aplicaciones Django. Define una guía de arquitectura de proyectos centrada en desacoplar la lógica de negocio de las vistas y modelos a través de una arquitectura de capa de servicio. La guía establece patrones de diseño específicos, incluyendo una capa de servicio para funciones de lógica de negocio independientes y un patrón de selector de datos para aislar consultas complejas a la base de datos. Define un estándar para vistas de propósito único que delegan la lógica a servicios y utilizan serializadores dedicados para la entrada y salida de datos. El framework cubre varias áreas de capacidad más amplias, incluyendo gestión de configuración modular para separar las sobrescrituras de entorno de la configuración base, una jerarquía de excepciones personalizada para el mapeo de errores impulsado por el dominio y un sistema para coordinar tareas en segundo plano y programación periódica. También incluye estándares para combinar restricciones de base de datos con validación a nivel de modelo y servicio.

    Structures API views to handle only request routing and response formatting while delegating business logic to services.

    Python
    Ver en GitHub↗6,209
  • pallets/quartAvatar de pallets

    pallets/quart

    3,599Ver en GitHub↗

    Quart is an asynchronous Python web framework that implements the ASGI specification. It is used to build high-performance HTTP and WebSocket services, JSON REST APIs, and web applications using async and await syntax for non-blocking request handling. The framework supports persistent bidirectional communication via WebSocket API servers and enables the proactive delivery of assets through HTTP server push. It also includes a template engine for rendering dynamic HTML web pages and supports incremental request and response streaming to manage large payloads. General capabilities cover reque

    Implements a routing table that maps HTTP request paths to asynchronous handler functions.

    Pythonasgiasyncioflask
    Ver en GitHub↗3,599
  1. Home
  2. Web Development
  3. Server-Side Frameworks
  4. Kotlin Frameworks
  5. Coroutine Frameworks
  6. Asynchronous Route Mapping

Explorar subetiquetas

  • Logic Delegation HandlersAPI view patterns that minimize internal logic by delegating execution to a service layer. **Distinct from Single-Purpose Handlers:** Focuses on the delegation of logic to services rather than the asynchronous nature of the handler.
  • Single-Purpose HandlersHTTP routing that maps requests to isolated, single-function asynchronous handlers. **Distinct from Asynchronous Route Mapping:** Focuses on the isolation of logic into single-purpose functions rather than general route mapping