protobuf.js
protobuf.js copied to clipboard
Protocol Buffers for JavaScript & TypeScript.
Fixed two issues. 1) If protofile uses some Namespace (for example, Test) and it contains some Service with the same name, nested Namespace Test.Test will be generated. This Namespace will...
protobuf.js version: 7.0.0 - 7.2.4 Just including the package to trigger the vulnerability warning. This is related to https://github.com/advisories/GHSA-h755-8qp9-cq85 ``` functions %> npm audit fix up to date, audited 1215...
protobuf.js version: 7.3.0 npm version 10.8.1 When attempting to run via `npm exec`, I'm getting an error message: ```console > npx protobufjs npm error could not determine executable to run...
protobuf.js version: 7.3.0, C++ protobuf version 21.4 Is it acutally possible to decode cpp-encoded protobuf objects with protobufs.js 7.3.0 and vice versa? Currently C++ protobuf version 21.4 and protobuf.js version:...
The example given is: ``` const rpcImpl = function(method, requestData, callback) { client.makeUnaryRequest( method.name, arg => arg, arg => arg, requestData, callback ) } ``` That gives a method call...
When resolving types, we shouldn't check nested namespaces. Example: ```proto message Foo { required Bar b = 1; required Qux q = 2; message Bar { required Corge c =...
protobuf.js version: 6.9.0 I am using protobufjs node package to work with protobuf. In my protobuf file structure, I have 3 inner protobuf message type. This is my protobuf file...
syntax = "proto2"; package proto; import "google/protobuf/descriptor.proto"; extend google.protobuf.MessageOptions { optional string url = 55555; } message Graph { optional string name = 1; optional string version = 2; repeated...
protobuf.js version: 7.3.0 I would expect that binaries generated with `protobufjs` to match the ones generated using `protoc` Based on the following `.proto` file ```protobuf syntax = "proto3"; package reporting.consumption;...
Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. I found that `pbts` copies the...