Socket
Socket
Sign inDemoInstall

csp-ksh

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    csp-ksh

Playing with CSP without generators


Version published
Maintainers
1
Install size
67.2 kB
Created

Readme

Source

csp-ksh

Experiments in CSP after reading:

  • http://jlongster.com/Taming-the-Asynchronous-Beast-with-CSP-in-JavaScript
  • http://phuu.net/2014/08/31/csp-and-transducers.html

You probably shouldn't use this. Although there are tests, I don't fully understand CSP / transducers yet!

Then I also read:

Supports:

  • transducers
  • buffer strategies: Sliding, Dropping, Fixed

Does not require generators!

Examples

See test.js. Otherwise here's an example of finding the mouse vector:

view on requirebin

var td = require('transducers-js');
var csp = require('./');
var chan = csp.chan;
var put = csp.put;
var take = csp.take;

// Create a channel with a buffer of size 2 using a sliding window strategy,
// with a transducer that groups as tuples.
var ch = chan([csp.SLIDING, 2], td.partitionAll(2));

// Built without generators, so we need our own "event loop".
(function next() {
  take(ch, function(ps) {
    var p1 = ps[0];
    var p2 = ps[1];
    if (p1 === chan.CLOSED || p2 === chan.CLOSED) return;
    document.body.innerHTML = ''
      + '<span style="font-size: 72px; text-align: center;">'
      + (p2.x - p1.x) + ', ' + (p2.y - p1.y)
      + '</span>'
    next();
  })
}())

// Always put the newest event into the channel.
document.body.addEventListener('mousemove', function(event) {
  put(ch, { x: event.clientX, y: event.clientY });
}, false)

Why?

Wanted to play around, also wanted to see how small (yet practical) I could make it, transducers and all. Generators are obviously possible via transpilation, but this provides a test bed for playing around in an environment without them.

License

MIT

Keywords

FAQs

Last updated on 17 Feb 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