@protocolbuffers/protoc-gen-js
v4.0.1
Published
Official standalone distribution of the protoc-gen-js plugin for Protocol Buffers
Downloads
1,178
Readme
This package is an official distribution of protoc-gen-js plugin generating javascript protobuf messages with protoc.
Aside from this package, you will need:
- protoc, the protobuf compiler.
- The protobuf-javascript runtime, obtainable from npm as google-protobuf.
Usage:
// Assuming you installed this package as: npm install --save-dev @protocolbuffers/protoc-gen-js
protoc --plugin=./node_modules/.bin/protoc-gen-js --js_out=import_style=commonjs,binary:. messages.proto <additional .proto files>protoc will search PATH for protoc-gen-js if --plugin is omitted.
This command will generate javascript protobuf files (with a _pb.js suffix for
commonjs imports) alongside their respective schema files
(e.g. messages_pb.js).
Please see our full documentation for more detailed usage instructions along with the generated code API.
