# asyncplify-node

> asyncplify operators for working with streams and events

Latest version **0.0.1** (published 2015-07-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install asyncplify-node
pnpm add asyncplify-node
yarn add asyncplify-node
bun add asyncplify-node
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2015-07-19 |
| First published | 2015-07-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Dany Laporte |
| Maintainers | danylaporte |
| Keywords | asyncplify, streams, frp, streams, reactive |

## Links

- npm: https://www.npmjs.com/package/asyncplify-node
- Repository: https://danylaporte@github.com/danylaporte/asyncplify-node
- Homepage: https://github.com/danylaporte/asyncplify-node#readme
- Issues: https://github.com/danylaporte/asyncplify-node/issues
- npm.io page: https://npm.io/package/asyncplify-node

## Dependencies (1)

- [asyncplify](https://npm.io/package/asyncplify.md) ^0.5.6

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

- 0.0.1 (latest) — 2015-07-19

## README

[![npm version](https://badge.fury.io/js/asyncplify-node.svg)](http://badge.fury.io/js/asyncplify-node)

# asyncplify-node
[asyncplify](https://github.com/danylaporte/asyncplify/tree/master/doc) operators for working with streams and events.

## Installation

```bash
$ npm install asyncplify-node
```

## Documentation

### fromStream(stream)
read the content from a stream (readable, transformable or writable)

Example:
```js
	asyncplifyNode
		.fromStream(createReadableStream())
		.subscribe();
```

### toStream(options)
write the content of an observable to a writable stream.

options:

- stream: Stream Object
- encoding: String
- objectMode: Boolean default = false

Example:

```js
	asyncplify
		.fromArray([1, 2, 3, 4])
		.pipe(asyncplifyNode.toStream(createWriteStream('file.txt')));
```

## License ##
The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

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