awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
grpc avatar

grpc/grpc-node

0
View on GitHub↗
4,833 stars·700 forks·TypeScript·Apache-2.0·4 vuesgrpc.io↗

Grpc Node

Ce projet est un framework gRPC pour Node.js utilisé pour implémenter des appels de procédure distante (RPC) haute performance. Il fournit une bibliothèque de communication client-serveur qui utilise HTTP/2 pour le streaming, le multiplexage et le cadrage binaire, ainsi qu'une implémentation de protocol buffers pour définir des données structurées et générer des stubs de service.

Le framework inclut une chaîne d'outils pour compiler les fichiers protocol buffer en objets spécifiques au langage et prend en charge la génération de définitions de type TypeScript statiques pour valider les objets à l'exécution.

La bibliothèque couvre la mise en réseau des systèmes distribués et la communication entre microservices, incluant le chiffrement SSL/TLS, la compression des messages et l'équilibrage de charge. Elle gère le cycle de vie des requêtes via des délais, des tentatives, la récupération de connexion et l'annulation d'appels. Les capacités supplémentaires incluent le streaming de données bidirectionnel, la réflexion de service pour la découverte programmatique et des services de vérification de santé standardisés.

Features

  • gRPC Service Implementations - Provides a high-performance framework for implementing and hosting gRPC services in Node.js.
  • Distributed Service Connectivity - Manages distributed network traffic using load balancing, SSL/TLS encryption, and automatic connection recovery.
  • Microservices Communications - Connects distributed services using efficient request-response and streaming data exchange based on standardized schemas.
  • gRPC Client Implementations - Provides a full gRPC client implementation for making remote procedure calls with support for reconnection and load balancing.
  • Load Balancers - Distributes requests across multiple backend endpoints to ensure high availability and optimal resource utilization.
  • Service Communication Libraries - Provides a comprehensive toolkit for managing network connections, serialization, and routing between distributed services.
  • gRPC Server Implementations - Provides the core server implementation to host gRPC services and respond to remote procedure calls.
  • gRPC and HTTP TLS Securings - Secures communication between clients and servers using SSL/TLS encryption with configurable certificates and keys.
  • Protobuf Stub Generators - Generates type-safe client and server stubs from Protocol Buffer interface definitions.
  • Node.js Microservices Frameworks - Implements a dedicated framework for building microservices architectures using the Node.js runtime and gRPC.
  • Protocol Buffer Implementations - Implements the Protocol Buffers serialization format for encoding, decoding, and defining structured data.
  • HTTP/2 Transport Layers - Utilizes HTTP/2 binary framing and multiplexing as the transport layer for high-performance remote calls.
  • Definition Loading - Implements utilities to parse protobuf definition files to prepare service and message structures for RPC use.
  • Request Hedging - Implements request retries and hedging strategies to improve reliability and reduce tail latency.
  • gRPC Service Generators - Ships a toolchain to compile protocol buffer files into language-specific client and service objects.
  • Bi-directional Streaming RPC - Supports continuous bi-directional data streaming between clients and servers for real-time communication.
  • Connection Keepalives - Maintains active network connections and detects dead peers through periodic heartbeat pings.
  • Automatic Connection Recovery - Handles automatic reconnection and monitors channel state to maintain a stable link between gRPC endpoints.
  • Data Compression - Reduces network bandwidth usage by compressing and decompressing messages transmitted between gRPC peers.
  • Dynamic Service Discovery - Enables dynamic updating of available service endpoints through integration with centralized management planes.
  • Reflection Services - Allows clients to programmatically discover available services and methods from a running server without schema files.
  • Remote Call Cancellation - Allows aborting pending remote procedure calls to conserve system resources on both client and server.
  • RPC Data Streaming - Implements asynchronous bi-directional data streams between clients and servers for continuous information exchange.
  • Request Deadlines - Sets maximum time limits for requests and automatically terminates calls that exceed the deadline.
  • Server Health Checks - Implements a standardized health checking service that allows external monitors to verify server availability and readiness.
  • Core Libraries - Node.js implementation for gRPC services.
  • RPC Frameworks - gRPC client implementation for Node.js.

Historique des stars

Graphique de l'historique des stars pour grpc/grpc-nodeGraphique de l'historique des stars pour grpc/grpc-node

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Alternatives open source à Grpc Node

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Grpc Node.
  • grpc/grpc-rustAvatar de grpc

    grpc/grpc-rust

    12,338Voir sur GitHub↗

    grpc-rust is a native gRPC framework for Rust designed for building high-performance remote procedure call clients and servers. It provides an asynchronous communication stack and a protocol buffers implementation for encoding, decoding, and generating type-safe code from service definitions. The project enables the implementation of unary and bi-directional data streaming over the HTTP/2 protocol. It includes specialized support for gRPC-Web integration, allowing browser-based clients to communicate with services through protocol translation. The infrastructure covers a broad range of distr

    Rustasyncgrpcproto
    Voir sur GitHub↗12,338
  • grpc/grpcAvatar de grpc

    grpc/grpc

    44,891Voir sur GitHub↗

    gRPC is a language-agnostic remote procedure call framework designed for high-performance communication between distributed services. It utilizes a structured interface definition language to generate consistent client stubs and server skeletons, enabling applications to invoke methods on remote servers as if they were local objects. By leveraging the HTTP/2 transport layer, the framework supports efficient binary serialization and multiplexed data exchange across diverse programming environments. The framework distinguishes itself through its support for flexible communication patterns, incl

    C++
    Voir sur GitHub↗44,891
  • grpc/grpc-dotnetAvatar de grpc

    grpc/grpc-dotnet

    4,469Voir sur GitHub↗

    This project is a .NET implementation of the gRPC framework, providing a system for executing functions on remote servers as if they were local calls. It serves as a high-performance remote procedure call (RPC) framework that utilizes HTTP/2 for service connectivity and binary communication protocols to ensure efficient data exchange. The implementation includes a gRPC-Web proxy, which acts as a translation layer to enable browser-based applications to communicate with gRPC services through web-compatible requests. It further supports the creation of HTTP/2 service meshes to connect distribut

    C#
    Voir sur GitHub↗4,469
  • line/armeriaAvatar de line

    line/armeria

    5,115Voir sur GitHub↗

    Armeria is a Netty-based microservice framework used for building high-performance asynchronous services. It functions as a multi-protocol RPC server capable of exposing gRPC, Thrift, and REST services on a single unified port. The project is distinguished by its ability to run diverse communication protocols simultaneously and its integrated RPC debugging web console, which allows for the discovery and invocation of remote procedure calls via JSON. It also includes a gRPC to JSON transcoder to enable web client compatibility with Protobuf services. The framework provides a comprehensive sui

    Java
    Voir sur GitHub↗5,115
Voir les 30 alternatives à Grpc Node→

Questions fréquentes

Que fait grpc/grpc-node ?

Ce projet est un framework gRPC pour Node.js utilisé pour implémenter des appels de procédure distante (RPC) haute performance. Il fournit une bibliothèque de communication client-serveur qui utilise HTTP/2 pour le streaming, le multiplexage et le cadrage binaire, ainsi qu'une implémentation de protocol buffers pour définir des données structurées et générer des stubs de service.

Quelles sont les fonctionnalités principales de grpc/grpc-node ?

Les fonctionnalités principales de grpc/grpc-node sont : gRPC Service Implementations, Distributed Service Connectivity, Microservices Communications, gRPC Client Implementations, Load Balancers, Service Communication Libraries, gRPC Server Implementations, gRPC and HTTP TLS Securings.

Quelles sont les alternatives open-source à grpc/grpc-node ?

Les alternatives open-source à grpc/grpc-node incluent : grpc/grpc-rust — grpc-rust is a native gRPC framework for Rust designed for building high-performance remote procedure call clients and… grpc/grpc — gRPC is a language-agnostic remote procedure call framework designed for high-performance communication between… grpc/grpc-dotnet — This project is a .NET implementation of the gRPC framework, providing a system for executing functions on remote… line/armeria — Armeria is a Netty-based microservice framework used for building high-performance asynchronous services. It functions… fullstorydev/grpcurl — grpcurl is a command-line interface and client tool for invoking gRPC methods and inspecting service definitions. It… grpc/grpc-go — grpc-go is a Go language implementation of the gRPC framework, providing a remote procedure call library for…