A minimal library that exposes a gRPC endpoint to execute GraphQL queries via remote procedure calls. Current version 1.0.10, low release cadence. Provides a simple server and client for sending GraphQL requests over gRPC, with basic insecure credentials support. Differentiates by bridging GraphQL queries into a gRPC service with minimal configuration, but lacks extensive documentation and error handling.
npm install grpc-graphqlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows server and client setup for gRPC GraphQL: start server on port 50051, then send a GraphQL query from client.
Implement your own GraphQL execution logic inside the handler (e.g., use graphql package).
Use secure credentials like 'credentials.createSsl()' from the grpc package.
Migrate to '@grpc/grpc-js' and update import paths accordingly.
npm install grpc
Use 'const { server } = require('grpc');' instead of 'const server = require('grpc');'