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

`TextDecoder` is a newer browser feature and [supported in a few browsers.](https://caniuse.com/#feat=textencoder) From my testing in the browser (reading 100,000 different messages with a few text fields) `TextDecoder` seems to...

enhancement

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [escodegen](https://togithub.com/estools/escodegen) | [`^1.13.0` -> `^2.0.0`](https://renovatebot.com/diffs/npm/escodegen/1.14.3/2.0.0) | [![age](https://badges.renovateapi.com/packages/npm/escodegen/2.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

The API Documentation contains links to [IConversionOptions](http://dcode.io/protobuf.js/IConversionOptions.html) and [IParseOptions](http://dcode.io/protobuf.js/IParseOptions.html), but both pages return a 404 Not Found error. Do you have documentation for previous builds (eg, 6.7.3)? If not, is...

bug

protobuf.js version: 6.10.2 ``` syntax = "proto3"; import "no/such/file.proto"; message Something { ImportedType field = 1; } ``` ```js root.loadSync("missing-import.proto") ``` This should throw an error if `"no/such/file.proto"` does not...

protobuf.js version: 6.9.0+ [https://nvd.nist.gov/vuln/detail/CVE-2022-25878]

protobuf.js version: 6.10.1 when web open csp, protobuf.js will block with unsafe-eval. I find problem at codegen 1. return Function.apply(null, scopeParams).apply(null, scopeValues); 2. return Function(source)(); What can I do to...

protobuf.js version: Can the function parse be used in the browser? for example : const protoStr = ` syntax = "proto3"; package test; message user { optional string name =...

protobuf.js version: 6.8.0 I am really surprised that in a library targeting Javascript there is no support for the most important wellknown-types: Struct and Value. Those types have been *specifically*...

enhancement

protobuf.js version: actual: UnhandledPromiseRejectionWarning: Error: illegal name ';' expect: parse option correct ```js option (grpc.gateway.protoc_gen_swagger.options.openapiv2_swagger) = { host: "xxxxx"; info: { title: "xxxxxxx"; version: "xxxxx"; description: "xxxxxx"; }; schemes: HTTP;...