asyncplify
v0.5.10
Published
FRP (functional reactive programming) library for Javascript
Downloads
32
Maintainers
Readme
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
- Book Thanks to xgrommx!
- Doc
- Performance
License
The MIT License (MIT)
Copyright (c) 2015 Dany Laporte