不错的grpc服务器反射 。 允许使用之类的工具,而无需传递.proto文件。 安装 npm install nice-grpc-server-reflection 用法 将以下标志添加到protoc命令: --descriptor_set_out=path/to/protoset.bin --include_imports 将ServerReflection服务实现添加到gRPC服务器: import { createServer } from 'nice-grpc' ; import { ServerReflectionService , ServerReflection , } from 'nice-grpc-server-reflection' ; import * as fs from 'fs' ; const server = createServer ( ) ;