Stream objects to a file and store it to be read from JSONStream
npm install object-stream-to-fs#object-stream-to-fs
consume a stream of objects and save them to a file.
specify a path to the target file.

js
var s = objectStreamToFS('/tmp/fileOut');
s.on('finish', function(){
console.log("the object stream has been consumed!")
});
objs.pipe(s);
`
methods
` js
var objectStreamToFS = require('object-stream-to-fs')
`
var s = objectStreamToFS(filePath)
consume the entire stream of objects.
the returned object s is a Stream.
events
d.on('done', function () {})
Emitted when all writes have been completed and the object stream has been consumed.
install
With npm do:
`
npm install object-stream-to-fs
``