protobuf.js
protobuf.js copied to clipboard
Protocol Buffers for JavaScript & TypeScript.
While proper modernization seems due, this PR for now tries to get all the things working again. * Updates dependencies but doesn't go to lengths in regards of breaking dependency...
protobuf.js version: 6.10.2 https://rollupjs.org/guide/en/#avoiding-eval node_modules/@protobufjs/inquire/index.js ```js function inquire(moduleName) { try { var mod = eval("quire".replace(/^/,"re"))(moduleName); // eslint-disable-line no-eval ^ if (mod && (mod.length || Object.keys(mod).length)) return mod; ```
### inquire() cannot resolve any modules in browsers that do not allow `unsafe-eval` inquire() will always return null in browsers with default CPS settings, even if the requested module is...
protobuf.js version: 6.11.2 when transfer a JSON payload to message object using `fromObject`, message force assign unset array field with empty array. expected unset field no change. ```js const protobuf...
Message.verify is not sensitive for use negative number on uint32 ``` package awesomepackage; syntax = "proto3"; message AwesomeMessage { uint32 awesome_field = 1; // becomes awesomeField } ``` ``` protobuf.load(path.join(__dirname,...
Pull request to resolve #1203. protobuf.js version: 6.11.2
when using protobufjs with cosmjs i got an error that i was able to solve with this hack. i had "long": "^5.2.0", where as you have "long": "^4.0.0" i suppose...
protobuf.js version: 6.8.0 Is there any way to not generate nested namespaces based on the proto package name, and have the types at the top-level? If not, can a cli...
protobuf.js version: 6.10.2 Circular dependencies node_modules/protobufjs/src/util/minimal.js -> node_modules/protobufjs/src/util/longbits.js -> node_modules/protobufjs/src/util/minimal.js node_modules/protobufjs/src/util/minimal.js -> node_modules/protobufjs/src/util/longbits.js -> /Users/shiqinqin/Documents/2022/jssdk/node_modules/protobufjs/src/util/minimal.js?commonjs-proxy -> node_modules/protobufjs/src/util/minimal.js