# hl-stream

> high-level streams library based on native node transforms

Latest version **1.0.0** (published 2018-10-22) · MIT license · 0 weekly downloads

## Install

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

## 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.0.0 |
| Published | 2018-10-22 |
| First published | 2018-10-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.1 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Maurice Domínguez |
| Maintainers | madoos |
| Keywords | stream, node, fp |

## Links

- npm: https://www.npmjs.com/package/hl-stream
- Repository: https://github.com/madoos/hl-stream
- Homepage: https://github.com/madoos/hl-stream#readme
- Issues: https://github.com/madoos/hl-stream/issues
- npm.io page: https://npm.io/package/hl-stream

## Dependencies (1)

- [ramda](https://npm.io/package/ramda.md) ^0.25.0

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2018-10-22

## README

[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]

# hl-stream

High level streams library based on native node transforms inspired by [highland](https://highlandjs.org/) and [ramda](http://ramdajs.com/).

The main focus is to provide a functional interface using the native Node streams.

For more information see [manual/Usage](manual/Usage.md) and [manual/Documentation](manual/Documentation.md)

## Getting Started

To install:

    npm i --save hl-stream

In your project:

```javascript
const _ = require('hl-stream')
const R = require('ramda')
const numberStream = require('./some/readable/numbersStream')

_.(numberStream)
.map(R.add(1))
.map(R.multiply(2))
.filter(R.gt(20))
.reduce(0, R.add)
.get()
.on('data', console.log)
```

## License

MIT © [Maurice Domínguez](maurice.ronet.dominguez@gmail.com)

[npm-image]: https://badge.fury.io/js/hl-stream.svg
[npm-url]: https://npmjs.org/package/hl-stream
[travis-image]: https://travis-ci.org/madoos/hl-stream.svg?branch=develop
[travis-url]: https://travis-ci.org/madoos/hl-stream
[daviddm-image]: https://david-dm.org/madoos/hl-stream.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/madoos/hl-stream
[coveralls-image]: https://coveralls.io/repos/madoos/hl-stream/badge.svg
[coveralls-url]: https://coveralls.io/r/madoos/hl-stream

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