Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Json2pb is a command line tool for converting json file to protobuf encoding file.
Json2pb是一个可以把json对象转换为Protobuf编码的命令行工具。
-修复protobufjs整数溢出不报错的问题 -忽略protobufjs对于optional字段不存在依然报错的问题。 -增加makefile依赖文件输出的功能。 -Node.js 64位整数出错的问题依旧木有解决~~
把Json对象用Protobuf打包只需要输入:json2pb -pmotion.proto -mmotion motion.json
想要把csv文件打包的朋友们, 可以先用evalcsv把csv文件转换为json对象。
npm install -g json2pb
Usage: json2pb [options] files
Options:
-h, --help Display this information.
-v, --version Print the compiler version.
-m, --message Set the message to be built.
-p, --proto Specify the .proto file for searching class name.
motion.json:
{
"rows": [
{
"motion_id": 11001,
"name": "跪姿肩部下沉",
"privileges": [
"owner",
"admin",
"user",
"guest"
],
"type": "热身",
"category": "胸",
},
{
"motion_id": 11002,
"name": "直体肩部下沉",
"privileges": [
"owner",
"admin",
"user",
"guest"
],
"type": "热身",
"category": "胸",
}
]
}
motion.proto:
syntax = "proto3";
message motion_row {
int32 motion_id = 1;
string name = 2;
repeated string privileges = 3;
string type = 4;
string category = 5;
}
message motion {
repeated motion_row rows = 1;
}
command line:
json2pb -pmotion.proto -mmotion motion.json
FAQs
Json2pb is a command line tool for converting json file to protobuf encoding file.
The npm package json2pb receives a total of 0 weekly downloads. As such, json2pb popularity was classified as not popular.
We found that json2pb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.