
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
protobufjs-cli
Advanced tools
Translates between file formats and generates static code as well as TypeScript definitions.
Command line add-on for protobuf.js. Generates static code, reflection bundles, and TypeScript definitions.
npm install --save-dev protobufjs-cli
npx pbjs --help
Translates between file formats and generates static code.
-t, --target Specifies the target format. Also accepts a path to require a custom target.
json JSON bundle
json-module JSON bundle as a module
proto2 Protocol Buffers, Version 2
proto3 Protocol Buffers, Version 3
static Static code without reflection (non-functional on its own)
static-module Static code without reflection as a module
-p, --path Adds a directory to the include path.
--filter Path to a JSON file listing messages and their dependencies to keep.
Example: {"messageNames":["mypackage.Message","Message2"]}
-o, --out Saves to a file instead of writing to stdout.
-d, --dts Also saves a .d.ts file next to --out for static-module and json-module.
--sparse Exports only those types referenced from a main file (experimental).
Module targets only:
-w, --wrap Specifies the wrapper to use. Also accepts a path to require a custom wrapper.
default Default wrapper supporting both CommonJS and AMD
commonjs CommonJS wrapper
amd AMD wrapper
esm ESM wrapper (implies --es6)
closure A closure adding to protobuf.roots where protobuf is a global
--dependency Specifies which version of protobuf to require. Accepts any valid module id
-r, --root Specifies an alternative protobuf.roots name.
-l, --lint Linter configuration. Defaults to protobuf.js-compatible rules:
eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars, default-case, jsdoc/require-param
--es6 Enables ES6 syntax (const/let instead of var)
Proto sources only:
--keep-case Keeps field casing instead of converting to camel case.
--alt-comment Turns on an alternate comment parsing mode that preserves more comments.
Static targets only:
--no-create Does not generate create functions used for reflection compatibility.
--no-encode Does not generate encode functions.
--no-decode Does not generate decode functions.
--no-verify Does not generate verify functions.
--no-convert Does not generate convert functions like from/toObject
--no-delimited Does not generate delimited encode/decode functions.
--no-typeurl Does not generate getTypeUrl function.
--no-beautify Does not beautify generated code.
--no-comments Does not output any JSDoc comments.
--no-service Does not output service classes.
--force-long Enforces the use of 'Long' for s-/u-/int64 and s-/fixed64 fields.
--force-number Enforces the use of 'number' for s-/u-/int64 and s-/fixed64 fields.
--force-message Enforces the use of message instances instead of plain objects.
--null-defaults Default value for optional fields is null instead of zero value.
--null-semantics Make nullable fields match protobuf semantics (overrides --null-defaults).
usage: pbjs [options] file1.proto file2.json ... (or pipe) other | pbjs [options] -
npx pbts --help
Generates TypeScript definitions from annotated JavaScript files.
-o, --out Saves to a file instead of writing to stdout.
-g, --global Name of the global object in browser environments, if any.
-i, --import Comma delimited list of imports, optionally as localName=path.
--no-constructor Emits private constructors for reflection-backed declarations.
--no-comments Does not output any JSDoc comments.
Internal flags:
-n, --name Wraps everything in a module of the specified name.
-m, --main Whether building a standalone file without any imports.
usage: pbts [options] file1.js file2.js ... (or) other | pbts [options] -
Generate static code and a matching declaration file:
npx pbjs -t static-module -w commonjs -o compiled.js --dts file1.proto file2.proto
Generate a reflection bundle and a matching declaration file:
npx pbjs -t json-module -w commonjs -o bundle.js --dts file1.proto file2.proto
Note that declarations generated for JSON modules describe reflection-backed message types. Use MyMessage.create(...) instead of constructors.
For nested reflected properties like MyMessage.MyEnum, type, service and enum names must start with an uppercase letter. Otherwise, use reflection lookups such as root.lookupType(...).
The CLI also provides protoc-gen-pbjs for projects that already use protoc but prefer protobuf.js code generation.
The plugin is an aggregate generator: each invocation writes one JavaScript module and, with dts, one matching declaration file.
protoc \
--plugin=protoc-gen-pbjs=./node_modules/.bin/protoc-gen-pbjs \
--pbjs_out=gen \
--pbjs_opt=dts \
proto/awesome.proto
By default, the plugin emits index.js with target=static-module and wrap=esm. Use file=PATH to choose the aggregate output file, target=json-module for a JSON module, wrap=commonjs for CommonJS output, and keep-case to preserve descriptor field names.
Other pbjs code generation options can be passed as usual, for example root=NAME, dependency=ID, lint=CONFIG, no-create, force-long, or null-semantics. See the pbjs help output above for the full option set.
Both utilities can be used programmatically by providing command line arguments and a callback to their respective main functions:
const { pbjs, pbts } = require("protobufjs-cli");
pbjs.main(["--target", "json-module", "path/to/myproto.proto"], function(err, output) {
if (err) throw err;
// do something with output
});
See the protobuf.js README for runtime variants, usage examples, and additional documentation.
The google-protobuf package provides Protocol Buffers support for JavaScript. It includes a runtime library and a code generator to compile .proto files to JavaScript. It is similar to protobufjs-cli but is the official Google implementation and may have better support for the latest Protocol Buffers features.
grpc-tools is a Node.js package that includes the Protocol Buffers compiler (protoc) and the gRPC Node.js plugin. It is used to generate gRPC service code from .proto files. While it also deals with .proto files, its primary focus is on gRPC services rather than general Protocol Buffers message encoding and decoding.
FAQs
Translates between file formats and generates static code as well as TypeScript definitions.
The npm package protobufjs-cli receives a total of 745,072 weekly downloads. As such, protobufjs-cli popularity was classified as popular.
We found that protobufjs-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.