cold-sweat
v0.0.2
Published
Massage csv data into a specific json format
Downloads
3
Readme
node-cold-sweat
Massage csv data into a specific json format
Pipe a stream of csv, and this returns a JSON object holding the properties. The returned object looks like this:
{
graph: {
title:
datasequences: [ {
title: <csv row 1, column n + 1>
datapoints: [ {
title:
value:
}, ...
]
}
...
]
}
}
=== Example
fs.createReadStream('./data.csv').pipe(sweat(function (err, result) {
console.log(result)
})