# streams-map

> Apply a function over chunks of a stream

Latest version **1.0.1** (published 2017-02-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install streams-map
pnpm add streams-map
yarn add streams-map
bun add streams-map
```

## 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.1 |
| Published | 2017-02-02 |
| First published | 2017-02-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Emil Kloeden |
| Maintainers | emilkloeden |
| Keywords | streams, map |

## Links

- npm: https://www.npmjs.com/package/streams-map
- Repository: https://github.com/emilkloeden/streams-map
- Homepage: https://github.com/emilkloeden/streams-map#readme
- Issues: https://github.com/emilkloeden/streams-map/issues
- npm.io page: https://npm.io/package/streams-map

## 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

- 1.0.1 (latest) — 2017-02-02
- 1.0.0 — 2017-02-02

## README

# Streams Map
[![Travis](https://img.shields.io/travis/emilkloeden/streams-map.svg)](https://travis-ci.org/emilkloeden/streams-map) 
[![Codecov](https://img.shields.io/codecov/c/github/emilkloeden/streams-map.svg)](https://codecov.io/gh/emilkloeden/streams-map) 
[![npm](https://img.shields.io/npm/dt/streams-map.svg)](https://www.npmjs.com/package/streams-map) 
[![npm](https://img.shields.io/npm/v/streams-map.svg)](https://www.npmjs.com/package/streams-map) 
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)

Apply a function over a stream of text.

## Installation

```npm install --save streams-map```

## Usage
```js
const map = require('streams-map')

const myStream = getStreamSomehow() // hello world

myStream
    .pipe(map(chunk => chunk.toString().toUpperCase())
    .pipe(process.stdout)

// HELLO WORLD
```

## License
MIT

## Contributions
This is a micro library providing little value to what I expect will be a nano audience. If you find a bug and want to contribute, I will happily accept pull requests.

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