Socket
Socket
Sign inDemoInstall

compute

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    compute

A simple reactive programming library.


Version published
Weekly downloads
19
increased by137.5%
Maintainers
1
Install size
69.9 kB
Created
Weekly downloads
 

Readme

Source

Compute Build Status

An extremely simple reactive programming library using Knockout style Observables.

Compute lets you describe relations between different observables. For example,

var a = Compute.o();
var b = Compute.o();
var c = Compute.from(a, b, function(a1, b1){
  return Math.sqrt(a*a + b*b)
});
a(3);
b(4);
console.log(c());   // 5

Now we change a, b

a(5);
b(12);
console.log(c());   //13

To stop c from being updated, we need to call

c.$stop();

Now remember knockout subscriptions are only triggered when the value of an observable changes. To force a relation to calculate immediately, we can call $fire like so

var x = C.o(7);
var y = C.o(22);
var z = C.from(x, y, function(x1, y1){
  return y1/x1;
});
z(); //undefined, because neither x nor y have changed
z.$fire();
z(); //3.14 .... blah ....

We can also tell Compute to execute a function everytime an observable changes.

Compute.on(c, function(c1){
  console.log("C just got set to " + c1);
});

Or, multiple observables

Compute.on(a, b, c, function(a1, b1, c1){
  console.log(a1 + "^2 + " + b1 + "^2 = " + c1 + "^2");
});

We also have obervable arrays, and we can define from, and on from them just the same. Or use observables and observable arrays in the same expression.

In the browser, Compute will automatically use knockout observables (instead of Compute's implementation) if you are using knockout. Then, you can use C.o and C.oa in your knockout viewmodel because C.o and C.oa are actually ko.observable and ko.observableArray. Remember you 'don't have to' use knockout to use Compute.

Compute loves the awesome Travis-CI.

Keywords

FAQs

Last updated on 15 Jan 2016

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