Socket
Socket
Sign inDemoInstall

json2pb

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

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
Weekly downloads
17
increased by142.86%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 17 May 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc