object-stream-to-fs

Stream objects to a file and store it to be read from JSONStream

Usage no npm install needed!

<script type="module">
  import objectStreamToFs from 'https://cdn.skypack.dev/object-stream-to-fs';
</script>

README

object-stream-to-fs

consume a stream of objects and save them to a file.

specify a path to the target file.

build status

example

save objects to a file:

var s = objectStreamToFS('/tmp/fileOut');
s.on('finish', function(){
  console.log("the object stream has been consumed!")
});

objs.pipe(s);

methods

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

license

MIT