node-csv-stream
node-csv-stream copied to clipboard
Simple CSV stream for node.js
Can we get top 10 rows only?
Hey! I had a use case where a user would upload a csv file and then I'd parse it converting it to JSON. Since a user would submit a windows...
I am trying to terminate the parsing and emit the `end` event. Here is my code, any help? `var csvStream = csv.createStream({ escapeChar: '"', enclosedChar: '"' });` let csvData =...
When there's more than one header line things get weird.
Hi, im running into an issue where an escape then the following enclose character (both in my case a double quote `"`), are split over two sequential chunks in a...
My understanding of pause() with respect to streaming a csv would be to pause the stream at the current record. This would allow async processing to occur before resuming the...
I'm using `csv-stream` with express to parse a request stream (file). This is the code I'm using: ```javascript const csv = require('csv-stream') module.exports = (req, res) => { const csvStream...
See discussion in: https://github.com/dominictarr/excel-stream/issues/12
This is probably not a use case that this module should be used for, but I am hoping there may be an easy way to make this work... I have...