# streamify-array

> Converts an array into a Node readable stream

Latest version **2.0.0** (published 2025-02-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install streamify-array
pnpm add streamify-array
yarn add streamify-array
bun add streamify-array
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: has types; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads; no esm support.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2025-02-18 |
| First published | 2017-11-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Ruben Taelman |
| Maintainers | rubensworks |
| Keywords | array, stream, readable |

## Links

- npm: https://www.npmjs.com/package/streamify-array
- Repository: https://github.com/rubensworks/streamify-array.js
- Homepage: https://github.com/rubensworks/streamify-array.js#readme
- Issues: https://github.com/rubensworks/streamify-array.js/issues
- npm.io page: https://npm.io/package/streamify-array

## Alternatives

- [byte-size](https://npm.io/package/byte-size.md) — 2.1M weekly downloads
- [speed-limiter](https://npm.io/package/speed-limiter.md) — 16.0K weekly downloads
- [@powersync/node](https://npm.io/package/@powersync/node.md) — 10.9K weekly downloads
- [@ledgerhq/coin-cardano](https://npm.io/package/@ledgerhq/coin-cardano.md) — 1.0K weekly downloads
- [@jayesol/jayeson.lib.streamfinder](https://npm.io/package/@jayesol/jayeson.lib.streamfinder.md) — 1.0K weekly downloads

## Recent versions

- 2.0.0 (latest) — 2025-02-18
- 1.0.1 — 2018-08-16
- 1.0.0 — 2017-11-20

## README

# Streamify Array

[![npm version](https://badge.fury.io/js/streamify-array.svg)](https://www.npmjs.com/package/streamify-array)

Converts an array into a Node readable stream.

This is a very simple zero-dependency implementation.

## Usage

```javascript
import { streamifyArray } from 'streamify-array';

let stream = streamifyArray([ 'a', 'b', 'c' ]);
stream.on('data', (d) => console.log('Data: ' + d));
stream.on('end', () => console.log('Done!'))
```

## License
This software is written by [Ruben Taelman](http://rubensworks.net/).

This code is released under the [MIT license](http://opensource.org/licenses/MIT).

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