#object-stream-to-fs
Consume a stream of objects and save them to a file.
Specify a path to the target file.
save objects to a file:
var s = objectStreamToFS('/tmp/test-file');
var d = dump('mongodb://127.0.0.1/test_db', 'testcollection');
d.pipe(s);
s.on('done', function(){
console.log("the object stream has been consumed!")
});
var objectStreamToFS = require('object-stream-to-fs')
Consume the entire stream of objects.
The returned object s
is a Stream.
Emitted when all writes have been completed and the object stream has been consumed.
With npm do:
npm install object-stream-to-fs
MIT