Questions tagged [proto]

Derived from Google Protocol Buffers, takes its name from the .proto file extension that houses a protocol schema.

Tips for sending information in node.js using the content type of 'application/x-protobuf'

Having trouble sending data with content-type='application/x-protobuf'. Is it possible to request protobuf through an HTTP request? If so, how can this be achieved? ...

The item is not functioning properly as intended

After delving into the concepts of prototype and proto, I believed that I had grasped the concept. However, something doesn't seem to add up. Can someone shed light on why directly accessing an Object like this does not yield the desired outcome? function ...

Working with repeated fields in Google protobuf in JavaScript

Consider this scenario: you have a google protobuf message called Customer with a repeated field as shown below. message Customer { repeated int32 items = 1; } What is the procedure for setting the repeated items field in javascript? ...