From f870240dcf3589aadad40bd90f63bbe885bc22af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Thu, 9 Sep 2010 20:36:51 +0200 Subject: [PATCH] Simple benchmark for node's startup time --- benchmark/startup.js | 26 ++++++++++++++++++++++++++ test/fixtures/empty.js | 1 + 2 files changed, 27 insertions(+) create mode 100644 benchmark/startup.js create mode 100644 test/fixtures/empty.js diff --git a/benchmark/startup.js b/benchmark/startup.js new file mode 100644 index 0000000000..3d1f443a4f --- /dev/null +++ b/benchmark/startup.js @@ -0,0 +1,26 @@ +var spawn = require('child_process').spawn, + path = require('path'), + emptyJsFile = path.join(__dirname, '../test/fixtures/empty.js'), + starts = 100, + i = 0, + start; + +function startNode() { + var node = spawn(process.execPath || process.argv[0], [emptyJsFile]); + node.on('exit', function(exitCode) { + if (exitCode !== 0) { + throw new Error('Error during node startup'); + } + + i++; + if (i < starts) { + startNode(); + } else{ + var duration = +new Date - start; + console.log('Started node %d times in %s ms. %d ms / start.', starts, duration, duration / starts); + } + }); +} + +start = +new Date; +startNode(); diff --git a/test/fixtures/empty.js b/test/fixtures/empty.js new file mode 100644 index 0000000000..092bc2b041 --- /dev/null +++ b/test/fixtures/empty.js @@ -0,0 +1 @@ +;