asyncplify

0.5.10 • Public • Published

npm versionBuild Status

asyncplify

FRP (functional reactive programming) library for Javascript.

This is a lightweight reimplementation of RxJS with speed in mind.

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

$ npm install asyncplify

Documentation

License

The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

/asyncplify/

    Package Sidebar

    Install

    npm i asyncplify

    Weekly Downloads

    4

    Version

    0.5.10

    License

    MIT

    Last publish

    Collaborators

    • danylaporte