protobuf-javascript
protobuf-javascript copied to clipboard
https://github.com/protocolbuffers/protobuf/pull/6447 https://github.com/protocolbuffers/protobuf/pull/6440 - Both packed/unpacked data should be accepted during parsing - Without specifying, encoding should follow the default behavior (unpacked for proto2 and packed for proto3) - When specified...
https://github.com/protocolbuffers/protobuf/pull/6560
**What language does this apply to?** JavaScript **Describe the problem you are trying to solve.** Currently, all generated getters for primitives in _pb.js files call to `jspb.Message.getFieldWithDefault` and there seem...
**What version of protobuf and what language are you using?** Version: v.3.11.2 Language: Python, Javascript **What operating system (Linux, Windows, ...) and version?** MacOS High Sierra Version 10.13.6 **What runtime...
please publish release binaries in npm --- something like `protoc-bin` will do. it'll simplify initial on-boarding for JS developers with grpc projects. (putting `protoc` file inside `node_modules/.bin` folder will do)...
In python/C#/C/Go/... generated code it is possible to create a proto message instance from JSON. E.g. [in Python][1] where you can just do `google.protobuf.json_format.Parse(json, message)`. I would expect the [JavaScript...
Version: 3.12.2 Language: Javascript Following is a base64 string of bytes that has been coded from C# side. I could immediately decode at C# side just fine, but it failed...
**What version of protobuf and what language are you using?** Version: libprotoc 3.12.0 Language: Javascript **What operating system (Linux, Windows, ...) and version?** Manjaro linux **What runtime / compiler are...
Version: 3.9.1 Language: Javascript I have a message like this: ``` message Outer { repeated Inner inner = 1; } message Inner { repeated Item items = 1; } message...
I am trying to run protbuf serialization for JScript app that runs in a window scripting host runtime (WSH) on window. The JScript seems to based on a very old...