1.0.0 • Published 11 years ago

csv-multibuffer-stream v1.0.0

Weekly downloads
5
License
BSD-2-Clause
Repository
github
Last release
11 years ago

csv-multibuffer-stream

Transform stream that accepts raw CSV data and emits the rows as multibuffers.

NPM

usage

var csvBuffStream = require('csv-multibuffer-stream')
var encoder = csvBuffStream()
fs.createReadStream('data.csv').pipe(csvBuffStream).pipe(httpPostToSomeServer)

optional arguments: csvBuffStream(onRow, csvParsingOptions)

var encoder = csvBuffStream(onRow)

function onRow(cells) {
  // gets called on every row with the cells in the row before they get packed
}

the csvParsingOptions are passed directly to binary-csv

var opts = {
  separator: '\t'
}
var encoder = csvBuffStream(opts)

use a multibuffer-stream .unpackStream() to decode the data on the other end

1.0.0

11 years ago

0.0.2

11 years ago

0.0.1

12 years ago