npm.io
0.5.10 • Published 11 years ago

asyncplify

Licence
MIT
Version
0.5.10
Deps
1
Vulns
0
Weekly
0
Stars
10

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

Keywords