Socket
Socket
Sign inDemoInstall

json2pb

Package Overview
Dependencies
47
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    json2pb

Json2pb is a command line tool for converting json file to protobuf encoding file.


Version published
Maintainers
1
Install size
4.23 MB
Created

Readme

Source

json2pb

Json2pb是一个可以把json对象转换为Protobuf编码的命令行工具。

  • 修复protobufjs整数溢出不报错的问题
  • 忽略protobufjs对于optional字段不存在依然报错的问题。
  • 增加makefile依赖文件输出的功能。
  • Node.js 不支持64位整数的问题依旧木有解决~~

把Json对象用Protobuf打包只需要输入:json2pb -pmotion.proto -mmotion motion.json

想要把csv文件打包的朋友们, 可以先用evalcsv把csv文件转换为json对象。

Install

  1. Install node.js

  2. Install with npm

    npm install -g json2pb

Usage

	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.

Example

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

Author

@randyliu

Licence

See the MIT License

Keywords

FAQs

Last updated on 09 Jul 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc