Created
August 6, 2012 17:05
-
-
Save heapwolf/3276657 to your computer and use it in GitHub Desktop.
streams/writable
This file contains 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
var fs = require('fs'); | |
var path = process.argv[2]; | |
var writableStream = fs.createWriteStream(path); | |
writableStream.write('Some data'); | |
writableStream.write('Some more data'); | |
writableStream.end(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment