TypeScript plugin for Egg.js to provide gRPC client functionality. Version 1.1.2, no active release cadence indicated. Forked from egg-grpc-client-ts, it adds configurable max_send_message_length and max_receive_message_length to the gRPC client setup. Designed for Egg.js framework applications requiring gRPC communication. Not actively maintained, limited documentation.
npm install egg-grpc-client-ts-plusNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic setup of egg-grpc-client-ts-plus in an Egg.js project: plugin registration, configuration, and usage to connect to a gRPC server.
Consider using '@eggjs/grpc-client' or newer alternatives.
Use 'grpcClient' as the plugin key in config/plugin.js.
Explicitly set maxSendMessageLength and maxReceiveMessageLength as needed.
Ensure proto files exist at the specified path.
Update @grpc/grpc-js to latest compatible version.
Run npm install, then check plugin.js has exports.grpcClient = { enable: true, package: 'egg-grpc-client-ts-plus' }Set exports.grpcClient = { clients: [ { name: 'main', ... } ] }Check server host/port and proto file correctness.