Official standalone distribution of the protoc-gen-js plugin for Protocol Buffers
npm install @protocolbuffers/protoc-gen-jsThis package is an official distribution of protoc-gen-js plugin generating
javascript protobuf messages with protoc.
Aside from this package, you will need:
1. protoc, the protobuf compiler.
2. The protobuf-javascript runtime, obtainable from npm as google-protobuf.
Usage:
``js
// 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
`
protoc will search PATH for protoc-gen-js if --plugin is omitted.
This command will generate javascript protobuf files (with a _pb.js suffix formessages_pb.js`).
commonjs imports) alongside their respective schema files
(e.g.
Please see our
full documentation
for more detailed usage instructions along with the generated code API.