tree: 8358049eedc04a447316905cd0ca9cfde7bd8fe9 [path history] [tgz]
  1. assert/
  2. async_hooks/
  3. buffers/
  4. child_process/
  5. cluster/
  6. crypto/
  7. dgram/
  8. dns/
  9. domain/
  10. es/
  11. events/
  12. fixtures/
  13. fs/
  14. http/
  15. http2/
  16. misc/
  17. module/
  18. napi/
  19. net/
  20. os/
  21. path/
  22. process/
  23. querystring/
  24. streams/
  25. string_decoder/
  26. timers/
  27. tls/
  28. url/
  29. util/
  30. v8/
  31. vm/
  32. worker/
  33. zlib/
  34. .eslintrc.yaml
  35. _benchmark_progress.js
  36. _cli.js
  37. _cli.R
  38. _http-benchmarkers.js
  39. _test-double-benchmarker.js
  40. common.js
  41. compare.js
  42. compare.R
  43. README.md
  44. run.js
  45. scatter.js
  46. scatter.R
benchmark/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

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).