Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created August 26, 2014 20:15
Show Gist options
  • Save mafintosh/9831f5601799c42e81a8 to your computer and use it in GitHub Desktop.
Save mafintosh/9831f5601799c42e81a8 to your computer and use it in GitHub Desktop.
var stream = tmpStream(function(filename, stat, cb) {
// do stuff
// when done call cb which will unlink filename
// plus emit 'finish' on stream (or 'error' if called with an error)
})
stream.write('hello world')
stream.end()
stream.on('finish', function() {
// above callback was called
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment