bromote
Version:
Tool to setup and require remote scripts with browserify.
18 lines (15 loc) • 379 B
JavaScript
;
console.log('loaded main');
require('bromote').runnel(function (runnel) {
runnel(
function (cb) {
setTimeout(cb.bind(null, null, 1), 500);
}
, function (one, cb) {
setTimeout(cb.bind(null, null, one + 1), 500);
}
, function (err, two) {
if (err) return console.error(err);
console.log('The result is ', two);
});
});