convert-stream

v1.0.2
Convert stream in node.js to buffer or array
convert stream streams buffer array

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*/ });
npm i convert-stream

Metadata

  • MIT
  • Whatever
  • Kumar Ujjwal
  • released 8/2/2016

Downloads

Maintainers