Skip to main content
Version: 3.2.x

Protocol Buffers and gRPC (UNSTABLE)

UNSTABLE API: contents of this page are not subject to our usual semver guarantees. We may make breaking changes in any release. Please try this API and provide feedback. We intend to promote it to a stable API in a minor release, possibly as soon as v2.1.0.

ts_proto_library uses the Connect library from bufbuild, and supports both Web and Node.js:

This Bazel integration follows the "Local Generation" mechanism described at https://connectrpc.com/docs/web/generating-code#local-generation, using packages such as @bufbuild/protoc-gen-es, @connectrpc/protoc-gen-connect-query, and @connectrpc/protoc-gen-connect-es as plugins to protoc.

The aspect configure command auto-generates ts_proto_library rules as of the 5.7.2 release. It's also possible to compile this library into your Gazelle binary.

Note: this API surface is not included in defs.bzl to avoid eager loads of rules_proto for all rules_ts users.

Installation

If you install rules_ts in WORKSPACE, you'll need to install the deps of rules_proto, like this:

load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies")

rules_proto_dependencies()

If you use bzlmod/MODULE.bazel then no extra install is required.

Future work

  • Allow users to choose other plugins. We intend to wait until http://github.com/bazelbuild/rules_proto supports protoc plugins.
  • Allow users to control the output format. Currently it is hard-coded to js+dts, and the JS output uses ES Modules.

Macros and Functions

ts_proto_library

A macro to generate JavaScript code and TypeScript typings from .proto files.

Example usage (generated):

load("@aspect_rules_ts//ts:proto.bzl", "ts_proto_library")

ts_proto_library(
# name of resulting ts_proto_library target
name = "",
# Label pointing to the linked node_modules target where @bufbuild/protoc-gen-es is linked, e.g
node_modules = None,
# the `proto_library` target that contains the .proto files to generate code for.
proto = None,
)

name

Required.

name of resulting ts_proto_library target

node_modules

Required.

Label pointing to the linked node_modules target where @bufbuild/protoc-gen-es is linked, e.g. //:node_modules. Since the generated code depends on @bufbuild/protobuf, this package must also be linked. If gen_connect_es = True then @bufbuild/proto-gen-connect-es should be linked as well. If gen_connect_query = True then @bufbuild/proto-gen-connect-query should be linked as well.

proto

Required.

the proto_library target that contains the .proto files to generate code for.

protoc_gen_options

Optional. Default: {}

dict of protoc_gen_es options. See https://github.com/bufbuild/protobuf-es/tree/main/packages/protoc-gen-es#plugin-options

gen_connect_es

Optional. Default: True

whether protoc_gen_connect_es should generate grpc services, and therefore *_connect.{js,d.ts} should be written.

gen_connect_query

Optional. Default: False

whether protoc_gen_connect_query should generate TanStack Query clients, and therefore *_connectquery.{js,d.ts} should be written.

gen_connect_query_service_mapping

Optional. Default: {}

mapping from source proto file to the named RPC services that file contains. Needed to predict which files will be generated by gen_connect_query. See https://github.com/connectrpc/connect-query-es/tree/main/examples/react/basic/src/gen

For example, given a.proto which contains a service Foo and b.proto that contains a service Bar, the mapping would be {"a.proto": ["Foo"], "b.proto": ["Bar"]}

copy_files

Optional. Default: True

whether to copy the resulting .d.ts files back to the source tree, for the editor to locate them.

proto_srcs

Optional. Default: None

the .proto files that are being generated. Repeats the srcs of the proto_library target. This is used only to determine a default for files_to_copy.

files_to_copy

Optional. Default: None

which files from the protoc output to copy. By default, performs a replacement on proto_srcs with the typical output filenames.

kwargs

Optional.

additional named arguments to the ts_proto_library rule