protobuf.js icon indicating copy to clipboard operation
protobuf.js copied to clipboard

Protocol Buffers for JavaScript & TypeScript.

Results 286 protobuf.js issues
Sort by recently updated
recently updated
newest added

protobuf.js version: 6.8.8 example: https://github.com/gertcuykens/protobuf Generated modules looks ok using ``` pbjs -p . task.proto -t static-module -w es6 -o task.pb.mjs ``` ```js import protobuf from 'protobufjs' import {Task} from...

protobuf.js version: 6.11.3 Apparently GCP Cloud Functions automatically update to the latest NodeJS minor version. It has recently updated to version 16.17.0 and it's causing the protobuf install to fail...

protobuf.js version: 6.9.0 nodejs: 14.2.0 If I have class **after enum** in JS file (after pbjs command), I can't see interfaces for it in TS file after pbts command. But...

protobuf.js version: 7.10.1 ### Please describe the expected and actual behavior If I create `Vector` message instance without setting fields, they will have default value for numbers - `0`: ```ts...

protobuf.js version: master (6254efb1bd9263978e9a90da3b05c4ccbcd6564a) Problem originates from: https://github.com/JennieJi/protobuf2swagger/issues/19. I wonder if failure in protobuf2swagger is a result of a bug in protobuf.js. proto input is: ``` tests/data/duplicated_defs/a/b/c/d/common.proto tests/data/duplicated_defs/a/b/c/d/request.proto tests/data/duplicated_defs/a/b/common.proto ```...

I think this line in the example ... https://github.com/protobufjs/protobuf.js/blob/67fe5926da6dc5ed0ea04f0784f3bf8f19333cd5/README.md?plain=1#L233 should be changed to ... ``` protobuf.load("awesome.proto", { keepCase: true}, function(err, root) { // keepCase is needed since snake_case property is...

protobuf.js version: 7.1.1 The patch version 7.1.1 doesn't seem to differ from 7.1.0. Only the compile date is updated. **Steps** 1. Install latest version with 'npm install protobufjs' 2. Examine...

Fix the unexpected case when listener be triggered. When I add two listeners of the same type to the event-emitter, and then I remove the first listener in the first...

Hi, I have a very simple code that works perfectly fine in nodejs but not working in browser. In nodejs I have two files Simple.js and Simple.proto here is the...

protobuf.js version: 7.1.0 i get an error when generating typescript types with a proto file that works normally with loadSync and older grpc.load. is this the right place to post...