@metaengine/protobuf-react
Protobuf 3 → React hooks and message types with optional TanStack Query (useQuery, useMutation), gRPC/Connect transport over native Fetch, and gRPC-native error handling. React 18+.
Pick your registry
The same generator, published to every ecosystem we support. Install however your project expects.
Drive it from the CLI or programmatically
npm ships a zero-config CLI. NuGet ships the same generator as a C# fluent API — same options, same output.
After install, point the CLI at your OpenAPI spec. It writes the generated tree to your chosen output directory.
npx @metaengine/protobuf-react <input> <output> [options]Generates React hooks and message types from Protobuf 3 .proto files, with gRPC/Connect transport over native Fetch.
npx @metaengine/protobuf-react service.proto ./src/apinpx @metaengine/protobuf-react service.proto ./src/api \
--tanstack-query \
--documentationnpx @metaengine/protobuf-react service.proto ./src/api \
--tanstack-query \
--middleware \
--bearer-auth API_TOKEN \
--timeout 30 \
--error-handlingEvery knob, documented
Every option is available on the C# fluent API as a method, and most are also exposed as CLI flags. Cross-cutting auth, headers, retries and timeouts apply across frameworks.
React Options
4WithBaseUrlEnvVar(string)Environment variable name for base URL (default: "REACT_APP_API_BASE_URL"). Use VITE_ prefix for Vite, NEXT_PUBLIC_ for Next.js.WithTanStackQuery()Generate TanStack Query hooks (useQuery / useMutation). Requires @tanstack/react-query.WithMiddleware()Emit fetch middleware infrastructure (Middleware type + chainMiddleware + createFetchWithMiddleware)WithResponseDateTransformation()Convert google.protobuf.Timestamp fields in responses to Date objects
Auth · Headers · Resilience
9WithErrorHandling()Enable gRPC-native error handling keyed on gRPC status codes (NOT_FOUND / PERMISSION_DENIED → null · INVALID_ARGUMENT / FAILED_PRECONDITION → error body · UNAUTHENTICATED / INTERNAL / UNAVAILABLE → throw)WithErrorHandling(grpc => grpc...)Tune the gRPC taxonomy: ReturnNullForCodes(...) · ReturnErrorForCodes(...) · ThrowForCodes(...) · MapGrpcCode(code, behavior). Overrides merge on top of the defaultsWithBearerAuth()Bearer token from env var (default API_TOKEN) — adds Authorization headerWithBearerAuth(string)Bearer token from a specific env var nameWithBearerAuth(string, string)Bearer token with custom header nameWithBasicAuth(string, string)HTTP Basic auth from username + password env varsWithCustomHeader(string, string)Static header from env var. Repeatable (e.g. X-Tenant-ID ← TENANT_ID)WithTimeout(double)Request timeout in seconds, emitted as a grpc-timeout header on every callWithTimeout(double?, double?, double?, double?)Granular timeout: connect · read · write · pool
Protobuf Options
5WithDocumentation()Generate JSDoc comments from .proto field and service descriptionsWithTypeFilter(Func)Filter extracted proto types before registration — only types returning true are generatedWithTypeMapping(string, Type)Override the TS mapping for a protobuf well-known type by fully-qualified name (e.g. google.protobuf.Timestamp → string)WithMethodNames(Func)Custom method naming ruleWithOptionsObjectThreshold(int)Parameter count for options object (default: 4)
TypeScript Output
1WithTypesBarrel()Emit an index.ts barrel per folder plus a root index.ts re-exporting everything
Naming Transformations
3Types(Func)Transform type namesPaths(Func)Transform output pathsFileNames(Func)Transform file names
File Management
5CleanDestination()Clean output directory before generationAlwaysOverwrite()Always overwrite existing filesOnlyWhenModelChanged()Update only when model changesOnlyWhenNew()Write only new files, preserve existingCleanDirectories(...)Clean specific subdirectories
Diagnostics
1EnableVerboseLogging()Enable detailed logging