Created
October 31, 2018 20:45
-
-
Save donmccurdy/6cbcd8cee74301f92b4400b376efda1d to your computer and use it in GitHub Desktop.
example CSV transformation in Node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const csv = require('csv'); | |
fs.createReadStream('data.csv') | |
.pipe(csv.parse({columns: true})) | |
.pipe(csv.transform((input) => { | |
return Object.assign({}, input, { | |
foo: input['foo'].toUpperCase() | |
}); | |
})) | |
.pipe(csv.stringify({header: true})) | |
.pipe(fs.createWriteStream('./data-processed.csv')) | |
.on('finish', () => { | |
console.log('Done 🍻 '); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi sorry, I'm not involved with the
csv
package and can't provide support for it. This is just an example I've posted as a reference. Stack Overflow or thecsv
github repository may be better places to ask for support.