JSPM

gojs

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 58898
  • Score
    100M100P100Q146230F
  • License MIT

go.js, Golang like channels and go.

Package Exports

  • gojs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gojs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

go.js, Golang like channels and go.

var Channel = require('../').Channel;
var go = require('../').go;
var bind = require('../').bind;
var then = require('../').then;

// Ref: http://swannodette.github.io/2013/08/24/es6-generators-and-csp/
//
go(function* (chan) {
  var ch2 = Channel();

  var r1 = yield db.query('SELECT 1', chan);
  var r2 = yield request('http://www.google.com', chan);

  db1.query('SELECT 1 FROM dummy', then(ch2, function (res) { ch2(null, res[0]); }));
  db2.query('SELECT 3', chan);
  var r3 = yield ch2;
  var r4 = yield;

  go(function* (ch3) {
    db1.query('SELECT 1', bind(ch3, 'r5'));
    db2.query('SELECT 3', bind(ch3, 'r6'));
    var rx = yield;
    var ry = yield;
    chan(null, rx[1] + ry[1]);
  });

  try {
    var r5 = yield;
  } catch (e) {}

  redis.get('k1', chan);
  redis.hget('k2', chan);
  var rk1 = yield;
  var rk2 = yield;
});