Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 6a1367fdb12d3bbb2e9aa49e0cd77079 > files > 15

nodejs-debug-0.7.2-4.fc18.noarch.rpm


// DEBUG=* node example/worker
// DEBUG=worker:* node example/worker
// DEBUG=worker:a node example/worker
// DEBUG=worker:b node example/worker

var a = require('../')('worker:a')
  , b = require('../')('worker:b');

function work() {
  a('doing lots of uninteresting work');
  setTimeout(work, Math.random() * 1000);
}

work();

function workb() {
  b('doing some work');
  setTimeout(workb, Math.random() * 2000);
}

workb();