npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

json-protobuf-stream

0.2.0

@mafintosh

npmHomeRepoSnykSocket
Downloads:5
$ npm install json-protobuf-stream
DailyWeeklyMonthlyYearly

json-protobuf-stream

Encode json to protobuf as a stream

npm install json-protobuf-stream

Usage

var jsonProtobuf = require('json-protobuf-stream');

var encoder = jsonProtobufStream();

encoder.on('update', function(callback) {
	console.log('schema has changed', encoder.schema.toJSON());
	callback();
});

encoder.on('data', function(data) {
	console.log('json encoded as protobuf: '+data);
});

encoder.write({hello:'world'});

License

MIT