🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

asyncplify

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncplify

FRP (functional reactive programming) library for Javascript

0.5.10
latest
Source
npm
Version published
Weekly downloads
6
-73.91%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • Book Thanks to xgrommx!
  • Doc
  • Performance

License

The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

Keywords

LINQ

FAQs

Package last updated on 27 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts