0.2.1 • Published 11 years ago

csv-protobuf-stream v0.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
11 years ago

csv-to-protobuf

Encode csv to protobuf

npm install csv-to-protobuf

Usage

var csvProtobuf = require('csv-to-protobuf');
var split = require('binary-split');
var encoder = csvProtobuf();

fs.createReadStream('data.csv').pipe(split()).pipe(encoder).on('data', function(data) {
	console.log('protobuf row:', data);
	console.log('protobuf schema:', encoder.schema);
})
0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago

0.0.0

11 years ago