Socket
Socket
Sign inDemoInstall

read-all-stream

Package Overview
Dependencies
10
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    read-all-stream

Read all stream content and pass it to callback


Version published
Weekly downloads
348K
decreased by-7.37%
Maintainers
1
Install size
197 kB
Created
Weekly downloads
 

Readme

Source

read-all-stream Build Status

Read stream to buffer or string

Install

$ npm install --save read-all-stream

Usage

var read = require('read-all-stream');
var stream = fs.createReadStream('index.js');

read(stream).then(function (data) {
	console.log(data.length);
});

read(stream, 'utf8', function (err, data) {
	console.log(data.length);
	//=> 42
});

API

read(stream, [options], [callback])

If callback is omitted, Promise will be returned.

stream

Required
Type: Stream

Event emitter, which data events will be consumed.

options

Type: object or string

If type of options is string, then it will be used as encoding. If type is Object, then next options are available:

options.encoding

Type: string, null
Default: 'utf8'

Encoding to be used on toString of the data. If null, the body is returned as a Buffer.

callback(err, data)

Will be called after stream is read.

err

Error object (if error event happens).

data

The data in stream.

License

MIT © Vsevolod Strukchinsky

Keywords

FAQs

Last updated on 27 Jan 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc