%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/child_process/
Upload File :
Create Path :
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/child_process/spawn-echo.js

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
  n: [1000],
});

const spawn = require('child_process').spawn;
function main({ n }) {
  bench.start();
  go(n, n);
}

function go(n, left) {
  if (--left === 0)
    return bench.end(n);

  const child = spawn('echo', ['hello']);
  child.on('exit', (code) => {
    if (code)
      process.exit(code);
    else
      go(n, left);
  });
}

Zerion Mini Shell 1.0