@metaengine/protobuf-fetch
Protobuf 3 → framework-agnostic TypeScript services and message types over the gRPC/Connect protocol on native Fetch. Zero dependencies, tree-shakeable, runs on Node, browsers, Vite, SvelteKit, and Next.js.
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-fetch <input> <output> [options]Generates framework-agnostic TypeScript services and message types from Protobuf 3 .proto files, using gRPC/Connect over native Fetch.
npx @metaengine/protobuf-fetch service.proto ./src/apinpx @metaengine/protobuf-fetch service.proto ./src/api \
--import-meta-env \
--base-url-env VITE_API_URL \
--result-pattern \
--middleware \
--documentationnpx @metaengine/protobuf-fetch service.proto ./src/api \
--bearer-auth API_TOKEN \
--custom-header X-Tenant-ID=TENANT_ID \
--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.
Fetch Options
5WithBaseUrlEnvVar(string)Environment variable name for base URL (default: "API_BASE_URL"). Enables getDefaultClient() lazy singleton.WithImportMetaEnv()Use import.meta.env instead of process.env (Vite, SvelteKit, Next.js 15+)WithResultPattern()Return ApiResult<T> for structured error handling without exceptionsWithMiddleware()Emit onRequest / onResponse / onError hooks in the generated clientWithResponseDateTransformation()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