node/benchmark
Ruben Bridgewater 50dd555910
doc,lib,test: capitalize comment sentences
This activates the eslint capitalize comment rule for comments
above 50 characters.

PR-URL: https://github.com/nodejs/node/pull/24996
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-12-17 17:14:35 +01:00
..
assert benchmark: improve assert benchmarks 2018-08-13 11:46:40 +02:00
async_hooks benchmark: refactor 2018-02-01 10:49:04 +01:00
buffers test: fix long-running buffer benchmarks 2018-04-22 11:06:30 +02:00
child_process tools: capitalize sentences 2018-12-10 17:07:18 +01:00
cluster benchmark: use destructuring 2018-01-23 01:29:34 +01:00
crypto tools: capitalize sentences 2018-12-10 17:07:18 +01:00
dgram tools: capitalize sentences 2018-12-10 17:07:18 +01:00
dns benchmark: use destructuring 2018-01-23 01:29:34 +01:00
domain benchmark: refactor 2018-02-01 10:49:04 +01:00
es benchmark: disable only the ESLint rule needing it 2018-06-06 21:03:32 -07:00
events events: optimize condition for optimal scenario 2018-05-03 14:45:09 +02:00
fixtures benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
fs benchmark: add dir and withFileTypes option readdir benchmarks 2018-11-08 15:01:14 -08:00
http benchmark: support URL inputs in create-clientrequest 2018-11-20 05:14:36 +08:00
http2 http2: improve http2 code a bit 2018-11-03 19:38:24 -07:00
misc benchmark: support more options in startup benchmark 2018-11-09 15:55:19 -08:00
module benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
napi doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
net doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
os benchmark: (os) use destructuring 2018-01-23 01:29:23 +01:00
path benchmark: fix platform in basename-win32 2018-02-01 10:48:56 +01:00
process test: remove unused config 2018-08-02 22:33:51 -04:00
querystring benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
streams tools: add no-duplicate-requires rule 2018-07-12 16:11:11 -05:00
string_decoder benchmark: (string_decoder) use destructuring 2018-01-23 01:29:25 +01:00
timers timers: run nextTicks after each immediate and timer 2018-10-17 20:38:07 -07:00
tls doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
url benchmark: pre-generate data set for URL benchmarks 2018-11-20 05:14:34 +08:00
util benchmark: add common.binding() 2018-10-14 13:23:16 -04:00
v8 benchmark: refactor 2018-02-01 10:49:04 +01:00
vm benchmark: refactor 2018-02-01 10:49:04 +01:00
worker worker: rename to worker_threads 2018-06-06 19:44:15 +02:00
zlib benchmark: add bench for zlib gzip + gunzip cycle 2018-04-28 08:32:12 +02:00
README.md
_benchmark_progress.js doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
_cli.R
_cli.js tools: capitalize sentences 2018-12-10 17:07:18 +01:00
_http-benchmarkers.js benchmark: remove unused catch bindings 2018-11-06 10:59:23 -05:00
_test-double-benchmarker.js test: add test-benchmark-http2 2018-10-29 11:39:32 -07:00
common.js tools: capitalize sentences 2018-12-10 17:07:18 +01:00
compare.R benchmark: fix "comparisons"' typo 2018-06-02 08:07:22 +09:00
compare.js benchmark: improve compare output 2018-02-08 11:38:25 -05:00
run.js
scatter.R benchmark: add lines to scatter plots 2018-09-02 13:15:41 +02:00
scatter.js

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.
http2 Benchmarks for the http2 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).