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 🍻 '); | |
| }); |
Author
How can i do async operation in transform ?
Author
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 the csv github repository may be better places to ask for support.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For example:
Note that this requires the data to fit in memory, so it may not scale as well as streaming row by row.