7 repository-uri
Importing service descriptors via reflection, source files, or binary sets.
Distinct from Protobuf Serialization: Focuses on loading the schema definition for communication, not the binary serialization process itself.
Explore 7 awesome GitHub repositories matching data & databases · Definition Loading. Refine with filters or upvote what's useful.
grpcurl is a command-line interface and client tool for invoking gRPC methods and inspecting service definitions. It serves as a server debugger and reflection client, allowing users to call remote procedures and verify server responses from the terminal using JSON or protobuf formats. The tool distinguishes itself through the ability to discover available services and methods dynamically via a server reflection service or by loading local protobuf schema files. It can extract service descriptions from a server for local use and print specific schema symbol definitions. It covers a broad ran
Imports service descriptors using server reflection, raw source files, or compiled protoset files.
protobuf.js is a JavaScript and TypeScript library for encoding and decoding structured data using the Protocol Buffers binary format. It functions as a dynamic parser that can load and process schemas at runtime, a JSON transcoder for converting messages to human-readable formats, and a framework for building transport-agnostic remote procedure call clients. The project distinguishes itself by offering both dynamic message handling and a static code generator that produces TypeScript declarations and JavaScript modules to reduce runtime overhead. It also provides a reflection API for definin
Imports service descriptors via reflection, source files, or binary sets to define message structures.
RoadRunner is a high-performance application server and process manager designed to serve PHP applications using a persistent worker model. It eliminates bootload overhead and initialization time by keeping application processes alive between requests, acting as a protocol-agnostic proxy that routes traffic to a pool of supervised workers. The server is built with a plugin-based modular architecture, allowing it to be extended with custom Go plugins and compiled into tailored binaries. It distinguishes itself by providing a unified execution model for a wide array of communication protocols,
Allows the retrieval of shared protobuf definitions at runtime for handling dynamic messages.
Loads game configuration and content from spreadsheet formats using custom schema definitions.
grpcui este o interfață web interactivă bazată pe browser și un client API pentru executarea apelurilor de procedură la distanță către servere gRPC. Funcționează ca un gateway HTTP-la-gRPC care traduce payload-urile JSON în mesaje binare protobuf, permițând utilizatorilor să declanșeze cereri de rețea și să inspecteze răspunsurile printr-o interfață web vizuală. Instrumentul oferă capabilități de navigare și descoperire a schemei prin interogarea reflecției serverului sau încărcarea fișierelor descriptor protobuf locale pentru a identifica serviciile disponibile și semnăturile metodelor. Utilizează aceste definiții pentru a genera automat formulare de intrare dinamice pentru construirea datelor cererii, incluzând suport pentru structuri imbricate complexe. Proiectul acoperă testarea API și depanarea clientului, permițând revizuirea corpului răspunsurilor, a codurilor de stare și a headerelor de metadate. De asemenea, gestionează conectivitatea securizată printr-un strat de transport care suportă text simplu, TLS și autentificare mutuală cu certificate de client configurabile.
Resolves communication endpoints by loading service definitions from server reflection, source files, or binary descriptors.
stc is a TypeScript type checker implemented entirely in Rust, designed to validate type correctness in TypeScript source code with native performance and memory safety. It operates as a no-emitting type validator, meaning it checks types only and does not produce JavaScript output, reducing overhead compared to a full compiler. The checker is built around a zero-false-positive design, reporting only errors that are provably certain from the type system, prioritizing correctness over speculative warnings. The tool distinguishes itself through parallel file processing, analyzing source files c
Loads and processes typing packages that use namespaces and globals.
This project is a gRPC framework for Node.js used to implement high-performance remote procedure calls. It provides a client-server communication library that utilizes HTTP/2 for streaming, multiplexing, and binary framing, alongside a protocol buffers implementation for defining structured data and generating service stubs. The framework includes a toolchain to compile protocol buffer files into language-specific objects and supports the generation of static TypeScript type definitions to validate objects at runtime. The library covers distributed system networking and microservices communi
Implements utilities to parse protobuf definition files to prepare service and message structures for RPC use.