1.0.2 • Published 8 years ago

convert-stream v1.0.2

Weekly downloads
539
License
MIT
Repository
github
Last release
8 years ago

convert-stream

Converts any stream to buffer or an array. Saves you from the trouble of saveing the streams to files.

Features

  • Fast
  • Promises implementation

Requirements

Before using gifme, please install:

Installation

For local

npm install convert-stream --save

Usage

For converting to Buffer

const cs = require('convert-stream');
const fs = require('fs');
const path = require('path');

let input = path.join(__dirname, 'yourexamplefile');

let yourStream = fs.createReadStream(input);
cs.toBuffer(yourStream)
    .then((returnedBuffer) => { /*doSomething*/ })
    .catch(err, function doSomthingWithError(error) { /*do something*/ });

For converting to array

cs.toArray(yourStream)
    .then((returnedArray) => { /*doSomething*/ })
    .catch(err, function doSomthingWithError(error) { /*do something*/ });