# stream-read

> Read from a stream, callback style

Latest version **1.1.2** (published 2014-12-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install stream-read
pnpm add stream-read
yarn add stream-read
bun add stream-read
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2014-12-01 |
| First published | 2014-10-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Maintainers | juliangruber |

## Links

- npm: https://www.npmjs.com/package/stream-read
- Repository: https://github.com/micnews/stream-read
- Issues: https://github.com/micnews/stream-read/issues
- npm.io page: https://npm.io/package/stream-read

## Dependencies (1)

- [dezalgo](https://npm.io/package/dezalgo.md) ^1.0.1

## Recent versions

- 1.1.2 (latest) — 2014-12-01
- 1.1.1 — 2014-11-30
- 1.1.0 — 2014-11-29
- 1.0.1 — 2014-10-14
- 1.0.0 — 2014-10-14

## README

# stream-read

  Read from a stream, callback style.

  [![build status](https://secure.travis-ci.org/micnews/stream-read.svg)](http://travis-ci.org/micnews/stream-read)

## Example

```js
var read = require('stream-read');

var stream = createStreamSomeHow();

read(stream, function(err, data){
  // err => stream emitted "error" event
  // truthy data => stream emitted data
  // `null` data => stream ended
});
```

## Installation

```bash
$ npm install stream-read
```

## License

  MIT

---
_Source: https://npm.io/package/stream-read · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
