Skip to content

Instantly share code, notes, and snippets.

@nickleefly
Created August 21, 2014 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickleefly/47ee8c9f180abb773d0e to your computer and use it in GitHub Desktop.
Save nickleefly/47ee8c9f180abb773d0e to your computer and use it in GitHub Desktop.
stream data into a file
var fs = require('fs')
var wstream = fs.createWriteStream('myfile.csv')
wstream.write('id, title, rating, zipcode\n')
wstream.write('1, my title, 5, 94402\n')
wstream.end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment