/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
benchmark/child_process/spawn-echo.js
24 строки
436 B
Antoine du Hamel
benchmark: add trailing commas
29 янв 2023, 21:13
Не верифицирован
29 янв 2023, 21:13
ca5f322
Код
Авторство
О чём код?
'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); }); }