convert-stream

1.0.2 • Public • Published

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*/ });

Package Sidebar

Install

npm i convert-stream

Weekly Downloads

225

Version

1.0.2

License

MIT

Last publish

Collaborators

  • uzil