UNPKG

pando-computing

Version:

Distribute processing of a stream of items to volunteers on the web.

13 lines (11 loc) 295 B
var debug = require('debug') var log = debug('pando:examples:square') module.exports['/pando/1.0.0'] = function (x, cb) { log('started processing ' + x) setTimeout(function () { x = Number.parseInt(JSON.parse(x)) var r = x * x log('returning ' + r) cb(null, r) }, 1000) }