Socket
Socket
Sign inDemoInstall

asyncplify

Package Overview
Dependencies
2
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    asyncplify

FRP (functional reactive programming) library for Javascript


Version published
Weekly downloads
49
increased by8.89%
Maintainers
1
Install size
325 kB
Created
Weekly downloads
 

Readme

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

License

The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

Keywords

FAQs

Last updated on 27 Jul 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc