logiblock-latent

0.1.0 • Public • Published

Latent

A writable stream that buffers data until you decide where to write it.

** Alpha, use at your own risk **

Latent is a writable stream that buffers data until you know where you need to write it. When you do, call open(filename). If you decide not to write the file, call close().

Installation

npm install latent

Example

var latentStream = new latent.Latent();

//obviously you'd actually use this for uploads or other network streams
process.stdin.pipe(latentStream);

determineWhereToSave(function onDetermineComplete(whereToSave)
{
  if(err)
    return(latentStream.close());
  
  //ensure the directory exists
  mkdirp(path.dirname(whereToSave), function onMkdirpComplete(err)
  {
   if(err)
      return(latentStream.close());
   
   latentStream.open(whereToSave);
  });
});

Package Sidebar

Install

npm i logiblock-latent

Weekly Downloads

2

Version

0.1.0

License

CC-SA-BY-3.0

Unpacked Size

7.94 kB

Total Files

3

Last publish

Collaborators

  • kuy