Load and parse a CSV file.
With npm do:
$ npm install nk-csv-stream --save-dev
var CsvStream = require('nk-csv-stream');
var stream = new CsvStream();
stream.on('data', function(row, head) {
if (head) return;
// Do something with the row.
});
stream.once('end', function() {
stream.dispose();
});
stream.open('https://url.com/to/file.csv');
MIT