node/benchmark
Brian White 190dc69c89
benchmark: add parameter for module benchmark
PR-URL: https://github.com/nodejs/node/pull/10789
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
2017-03-10 23:46:36 -05:00
..
arrays
assert benchmark: add assert.deep[Strict]Equal benchmarks 2017-02-06 11:25:21 +08:00
buffers meta: restore original copyright header 2017-03-10 11:23:48 -08:00
child_process child_process: fix deoptimizing use of arguments 2017-03-01 10:24:03 -05:00
crypto benchmark: fix punycode and get-ciphers benchmark 2017-03-09 22:01:45 +01:00
dgram benchmark: strip BOM in dgram/bind-params 2017-02-24 01:54:45 +01:00
domain tools: enable one-var-declaration-per-line ESLint rule 2017-02-21 12:53:19 +01:00
es benchmark: remove forced optimization from es 2017-03-06 16:31:58 +01:00
events
fixtures benchmark: move url data to fixtures 2017-02-15 09:12:16 -08:00
fs fs: improve performance for sync stat() functions 2017-02-25 20:58:42 -05:00
http benchmark: add ClientRequest creation benchmark 2017-01-13 16:11:19 -05:00
misc benchmark: fix punycode and get-ciphers benchmark 2017-03-09 22:01:45 +01:00
module benchmark: add parameter for module benchmark 2017-03-10 23:46:36 -05:00
net
os os: improve cpus() performance 2017-03-02 15:31:21 -05:00
path benchmark: remove forced optimization from path 2017-03-06 16:32:00 +01:00
process process: improve memoryUsage() performance 2017-02-23 17:19:39 -08:00
querystring benchmark: remove querystring forced optimization 2017-03-06 16:32:01 +01:00
streams benchmark: remove streams forced optimization 2017-03-06 16:32:02 +01:00
string_decoder
timers benchmark: move setImmediate benchmarks to timers 2017-01-30 08:44:09 -08:00
tls benchmark: remove forced optimization from tls 2017-03-06 16:32:03 +01:00
url benchmark: remove forced optimization from url 2017-03-06 16:32:04 +01:00
util benchmark: remove forced optimization from util 2017-03-06 16:32:05 +01:00
vm benchmark: add benchmark for vm.runIn*() 2017-01-18 08:26:57 -08:00
README.md benchmark: cleanup after forced optimization drop 2017-03-06 16:32:06 +01:00
_benchmark_progress.js benchmark: fix timer display in progress output 2017-02-16 16:22:56 -08:00
_cli.R
_cli.js benchmark: add progress indicator to compare.js 2017-01-31 03:03:57 +08:00
_http-benchmarkers.js benchmark: allow zero when parsing http req/s 2017-01-11 12:54:49 -05:00
common.js benchmark: cleanup after forced optimization drop 2017-03-06 16:32:06 +01:00
compare.R benchmark,build,doc,lib,src,test: correct typos 2017-03-03 16:29:19 -05:00
compare.js benchmark,build,doc,lib,src,test: correct typos 2017-03-03 16:29:19 -05:00
run.js benchmark: add progress indicator to compare.js 2017-01-31 03:03:57 +08:00
scatter.R
scatter.js benchmark: add progress indicator to compare.js 2017-01-31 03:03:57 +08:00

README.md

Node.js Core Benchmarks

This folder contains code and data used to measure performance of different Node.js implementations and different ways of writing JavaScript run by the built-in JavaScript engine.

For a detailed guide on how to write and run benchmarks in this directory, see the guide on benchmarks.

Table of Contents

Benchmark Directories

Directory Purpose
arrays Benchmarks for various operations on array-like objects, including Array, Buffer, and typed arrays.
assert Benchmarks for the assert subsystem.
buffers Benchmarks for the buffer subsystem.
child_process Benchmarks for the child_process subsystem.
crypto Benchmarks for the crypto subsystem.
dgram Benchmarks for the dgram subsystem.
domain Benchmarks for the domain subsystem.
es Benchmarks for various new ECMAScript features and their pre-ES2015 counterparts.
events Benchmarks for the events subsystem.
fixtures Benchmarks fixtures used in various benchmarks throughout the benchmark suite.
fs Benchmarks for the fs subsystem.
http Benchmarks for the http subsystem.
misc Miscellaneous benchmarks and benchmarks for shared internal modules.
module Benchmarks for the module subsystem.
net Benchmarks for the net subsystem.
path Benchmarks for the path subsystem.
process Benchmarks for the process subsystem.
querystring Benchmarks for the querystring subsystem.
streams Benchmarks for the streams subsystem.
string_decoder Benchmarks for the string_decoder subsystem.
timers Benchmarks for the timers subsystem, including setTimeout, setInterval, .etc.
tls Benchmarks for the tls subsystem.
url Benchmarks for the url subsystem, including the legacy url implementation and the WHATWG URL implementation.
util Benchmarks for the util subsystem.
vm Benchmarks for the vm subsystem.

Other Top-level files

The top-level files include common dependencies of the benchmarks and the tools for launching benchmarks and visualizing their output. The actual benchmark scripts should be placed in their corresponding directories.

  • _benchmark_progress.js: implements the progress bar displayed when running compare.js
  • _cli.js: parses the command line arguments passed to compare.js, run.js and scatter.js
  • _cli.R: parses the command line arguments passed to compare.R
  • _http-benchmarkers.js: selects and runs external tools for benchmarking the http subsystem.
  • common.js: see Common API.
  • compare.js: command line tool for comparing performance between different Node.js binaries.
  • compare.R: R script for statistically analyzing the output of compare.js
  • run.js: command line tool for running individual benchmark suite(s).
  • scatter.js: command line tool for comparing the performance between different parameters in benchmark configurations, for example to analyze the time complexity.
  • scatter.R: R script for visualizing the output of scatter.js with scatter plots.

Common API

The common.js module is used by benchmarks for consistency across repeated tasks. It has a number of helpful functions and properties to help with writing benchmarks.

createBenchmark(fn, configs[, options])

See the guide on writing benchmarks.

default_http_benchmarker

The default benchmarker used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

PORT

The default port used to run HTTP benchmarks. See the guide on writing HTTP benchmarks.

sendResult(data)

Used in special benchmarks that can't use createBenchmark and the object it returns to accomplish what they need. This function reports timing data to the parent process (usually created by running compare.js, run.js or scatter.js).