# asyncplify

> FRP (functional reactive programming) library for Javascript

Latest version **0.5.10** (published 2015-07-27) · MIT license · 0 weekly downloads

## Install

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

## 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.5.10 |
| Published | 2015-07-27 |
| First published | 2015-04-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 10 |
| Author | Dany Laporte |
| Maintainers | danylaporte |
| Keywords | LINQ, FRP, Reactive, Events, async |

## Links

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

## Dependencies (1)

- [debug](https://npm.io/package/debug.md) ^2.2.0

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 0.5.10 (latest) — 2015-07-27
- 0.5.9 — 2015-07-27
- 0.5.8 — 2015-07-22
- 0.5.7 — 2015-07-19
- 0.5.6 — 2015-07-17
- 0.5.5 — 2015-07-16
- 0.5.4 — 2015-07-16
- 0.5.3 — 2015-07-15
- 0.5.2 — 2015-07-13
- 0.5.1 — 2015-07-12
- 0.5.0 — 2015-07-10
- 0.4.3 — 2015-06-20
- 0.4.2 — 2015-06-10
- 0.4.1 — 2015-06-09
- 0.4.0 — 2015-06-07
- … 37 more at https://npm.io/package/asyncplify/versions

## README

[![npm version](https://badge.fury.io/js/asyncplify.svg)](http://badge.fury.io/js/asyncplify)[![Build Status](https://travis-ci.org/danylaporte/asyncplify.svg)](https://travis-ci.org/danylaporte/asyncplify)

# asyncplify
FRP (functional reactive programming) library for Javascript.

This is a lightweight reimplementation of [RxJS](https://github.com/Reactive-Extensions/RxJS) with speed in mind.

```js
var asyncplify = require('asyncplify')

asyncplify
    .fromArray([1, 2, 3])
    .filter(function (v) {
        return v > 1;
    })
    .subscribe(function (v) {
        console.log(v);
    });

// emit 2
// emit 3
// end.
```

## Installation

```bash
$ npm install asyncplify
```

## Documentation
- [Book](http://xgrommx.github.io/asyncplify-book/) Thanks to xgrommx!
- [Doc](https://github.com/danylaporte/asyncplify/tree/master/doc)
- [Performance](https://github.com/danylaporte/asyncplify/tree/master/perf)


## License ##
The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

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