├── .gitignore ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── README.md ├── benchmarkdata ├── benchmachine_setup.txt ├── dbmachine_setup.txt └── dobackup.sh ├── benchmarks ├── BenchmarkIDs.md ├── README.md ├── StreamIDs.md ├── acmeair_latency │ └── acmeairLatency.json ├── acmeair_postfootprint │ └── acmeairPostfootprint.json ├── acmeair_prefootprint │ └── acmeairPrefootprint.json ├── acmeair_throughput │ └── acmeairThroughput.json ├── common │ └── common_template1.html.base ├── dc_eis_latency │ └── dceisLatency.json ├── dc_eis_postfootprint │ └── dceisPostfootprint.json ├── dc_eis_prefootprint │ └── dceisPrefootprint.json ├── dc_eis_throughput │ └── dceisThroughput.json ├── octane │ ├── octane.js │ └── octane.json ├── require_cached │ └── requireCached.json ├── require_new │ └── requireNew.json ├── start_stop_time │ ├── calcStartup.sh │ ├── nodeStartup.js │ ├── startNode.sh │ ├── startup.png │ └── startupChart.json ├── startup_footprint │ ├── footprint.png │ ├── footprintChart.json │ └── report-startup-memory.js └── web_tooling_benchmark │ └── webToolingBenchmark.json ├── docs ├── HardwareAsk.md ├── case_coverage.md ├── core_benchmarks.md ├── perfchanges.md ├── runtime_attributes.md └── use_cases.md ├── experimental ├── benchmarks │ ├── acmeair │ │ ├── Dockerfile │ │ ├── acmeair_latency.awk │ │ ├── acmeair_score.awk │ │ ├── cpuParse.sh │ │ ├── fp.sh │ │ ├── jmeter_scripts │ │ │ ├── AcmeAir.jmx │ │ │ ├── Airports.csv │ │ │ ├── Airports2.csv │ │ │ ├── acmeair.properties │ │ │ └── hosts.csv │ │ ├── kill_node_linux │ │ ├── loaddb.sh │ │ ├── mongodb.sh │ │ ├── run_acmeair.sh │ │ ├── run_acmeair_docker.sh │ │ └── setupJmeter.sh │ ├── community-benchmark │ │ └── run.sh │ ├── footprint │ │ ├── footprint.html.base │ │ ├── footprint.png │ │ └── footprintChart.json │ ├── http │ │ └── parse_results.js │ ├── node-api │ │ ├── events │ │ │ └── events.perf.js │ │ ├── require │ │ │ ├── a.js │ │ │ └── require.perf.js │ │ ├── runner.js │ │ └── url │ │ │ └── url.perf.js │ ├── node-dc-eis │ │ ├── cpuParse.sh │ │ ├── fp.sh │ │ ├── kill_node_linux │ │ ├── mongodb.sh │ │ └── run-dc-eis.sh │ └── startup │ │ ├── calcStartup.sh │ │ ├── nodeStartup.js │ │ ├── startNode.sh │ │ ├── startup.html.base │ │ ├── startup.png │ │ └── startupChart.json └── chartGen │ ├── createpage.js │ ├── createpng.js │ ├── gencharts.js │ └── lib │ └── README.md ├── meetings ├── 2015-05-27 │ └── minutes.md ├── 2015-06-16 │ ├── Acmeair Mongo on Mesos.mov │ ├── Acmeair_NodeJS_v0.1.pdf │ └── minutes.md ├── 2015-07-09 │ └── minutes.md ├── 2015-08-11 │ └── minutes.md ├── 2015-09-30 │ └── minutes.md ├── 2015-11-19 │ └── minutes.md ├── 2016-01-07 │ └── minutes.md ├── 2016-02-25 │ └── minutes.md ├── 2016-04-12 │ └── minutes.md ├── 2016-06-07 │ └── minutes.md ├── 2016-09-21 │ └── minutes.md ├── 2016-11-18 │ └── minutes.md ├── 2017-01-12 │ └── minutes.md ├── 2017-05-18 │ └── minutes.md ├── 2017-06-19 │ └── minutes.md ├── 2017-08-01 │ └── minutes.md ├── 2017-08-14 │ └── minutes.md ├── 2017-08-28 │ └── minutes.md ├── 2017-09-11 │ └── minutes.md ├── 2017-10-06 │ └── minutes.md ├── 2017-10-23 │ └── minutes.md ├── 2017-11-20 │ └── minutes.md ├── 2017-12-04 │ └── minutes.md ├── 2018-01-15 │ └── minutes.md ├── 2018-01-29 │ └── minutes.md ├── 2018-02-26 │ └── minutes.md ├── 2018-04-09 │ └── minutes.md ├── 2018-04-23 │ └── minutes.md ├── 2018-06-05 │ └── minutes.md ├── 2018-07-26 │ └── minutes.md ├── 2018-07-31 │ └── minutes.md ├── 2018-08-28 │ └── minutes.md ├── 2018-09-18.md ├── 2018-10-16 │ └── minutes.md ├── 2018-10-30 │ └── minutes.md ├── 2018-11-20 │ └── minutes.md ├── 2018-12-18 │ └── minutes.md ├── 2019-01-22 │ └── minutes.md ├── 2019-03-05 │ └── minutes.md ├── 2019-04-19 │ └── minutes.md ├── 2019-05-28 │ └── minutes.md └── 2019-07-09 │ └── minutes.md ├── package.json ├── tools ├── acceptResults │ ├── README.md │ ├── bridge.js │ ├── package-lock.json │ ├── package.json │ └── start_bridge.sh ├── chartGen │ ├── .gitignore │ ├── README.md │ ├── chartcron.sh │ ├── createpage.js │ ├── createpng.js │ ├── gencharts.js │ ├── gencharts.sh │ ├── lib │ │ └── README.md │ ├── package-lock.json │ └── package.json └── postResults │ ├── README.md │ └── postit.sh └── www ├── charts ├── acmeair_latency.png ├── acmeair_postfootprint.png ├── acmeair_prefootprint.png ├── acmeair_throughput.png ├── require_cached.png ├── require_new.png ├── start_stop.png └── startup_footprint.png ├── index.html └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/README.md -------------------------------------------------------------------------------- /benchmarkdata/benchmachine_setup.txt: -------------------------------------------------------------------------------- 1 | Additional packages 2 | 3 | - numactl 4 | - unzip 5 | 6 | -------------------------------------------------------------------------------- /benchmarkdata/dbmachine_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarkdata/dbmachine_setup.txt -------------------------------------------------------------------------------- /benchmarkdata/dobackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarkdata/dobackup.sh -------------------------------------------------------------------------------- /benchmarks/BenchmarkIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/BenchmarkIDs.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/StreamIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/StreamIDs.md -------------------------------------------------------------------------------- /benchmarks/acmeair_latency/acmeairLatency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/acmeair_latency/acmeairLatency.json -------------------------------------------------------------------------------- /benchmarks/acmeair_postfootprint/acmeairPostfootprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/acmeair_postfootprint/acmeairPostfootprint.json -------------------------------------------------------------------------------- /benchmarks/acmeair_prefootprint/acmeairPrefootprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/acmeair_prefootprint/acmeairPrefootprint.json -------------------------------------------------------------------------------- /benchmarks/acmeair_throughput/acmeairThroughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/acmeair_throughput/acmeairThroughput.json -------------------------------------------------------------------------------- /benchmarks/common/common_template1.html.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/common/common_template1.html.base -------------------------------------------------------------------------------- /benchmarks/dc_eis_latency/dceisLatency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/dc_eis_latency/dceisLatency.json -------------------------------------------------------------------------------- /benchmarks/dc_eis_postfootprint/dceisPostfootprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/dc_eis_postfootprint/dceisPostfootprint.json -------------------------------------------------------------------------------- /benchmarks/dc_eis_prefootprint/dceisPrefootprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/dc_eis_prefootprint/dceisPrefootprint.json -------------------------------------------------------------------------------- /benchmarks/dc_eis_throughput/dceisThroughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/dc_eis_throughput/dceisThroughput.json -------------------------------------------------------------------------------- /benchmarks/octane/octane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/octane/octane.js -------------------------------------------------------------------------------- /benchmarks/octane/octane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/octane/octane.json -------------------------------------------------------------------------------- /benchmarks/require_cached/requireCached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/require_cached/requireCached.json -------------------------------------------------------------------------------- /benchmarks/require_new/requireNew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/require_new/requireNew.json -------------------------------------------------------------------------------- /benchmarks/start_stop_time/calcStartup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/start_stop_time/calcStartup.sh -------------------------------------------------------------------------------- /benchmarks/start_stop_time/nodeStartup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/start_stop_time/startNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/start_stop_time/startNode.sh -------------------------------------------------------------------------------- /benchmarks/start_stop_time/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/start_stop_time/startup.png -------------------------------------------------------------------------------- /benchmarks/start_stop_time/startupChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/start_stop_time/startupChart.json -------------------------------------------------------------------------------- /benchmarks/startup_footprint/footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/startup_footprint/footprint.png -------------------------------------------------------------------------------- /benchmarks/startup_footprint/footprintChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/startup_footprint/footprintChart.json -------------------------------------------------------------------------------- /benchmarks/startup_footprint/report-startup-memory.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | console.log(process.memoryUsage().rss); 3 | -------------------------------------------------------------------------------- /benchmarks/web_tooling_benchmark/webToolingBenchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/benchmarks/web_tooling_benchmark/webToolingBenchmark.json -------------------------------------------------------------------------------- /docs/HardwareAsk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/HardwareAsk.md -------------------------------------------------------------------------------- /docs/case_coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/case_coverage.md -------------------------------------------------------------------------------- /docs/core_benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/core_benchmarks.md -------------------------------------------------------------------------------- /docs/perfchanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/perfchanges.md -------------------------------------------------------------------------------- /docs/runtime_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/runtime_attributes.md -------------------------------------------------------------------------------- /docs/use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/docs/use_cases.md -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/Dockerfile -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/acmeair_latency.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/acmeair_latency.awk -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/acmeair_score.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/acmeair_score.awk -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/cpuParse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/cpuParse.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/fp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/fp.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/jmeter_scripts/AcmeAir.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/jmeter_scripts/AcmeAir.jmx -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/jmeter_scripts/Airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/jmeter_scripts/Airports.csv -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/jmeter_scripts/Airports2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/jmeter_scripts/Airports2.csv -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/jmeter_scripts/acmeair.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/jmeter_scripts/acmeair.properties -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/jmeter_scripts/hosts.csv: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/kill_node_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/kill_node_linux -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/loaddb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/loaddb.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/mongodb.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/run_acmeair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/run_acmeair.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/run_acmeair_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/run_acmeair_docker.sh -------------------------------------------------------------------------------- /experimental/benchmarks/acmeair/setupJmeter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/acmeair/setupJmeter.sh -------------------------------------------------------------------------------- /experimental/benchmarks/community-benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/community-benchmark/run.sh -------------------------------------------------------------------------------- /experimental/benchmarks/footprint/footprint.html.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/footprint/footprint.html.base -------------------------------------------------------------------------------- /experimental/benchmarks/footprint/footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/footprint/footprint.png -------------------------------------------------------------------------------- /experimental/benchmarks/footprint/footprintChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/footprint/footprintChart.json -------------------------------------------------------------------------------- /experimental/benchmarks/http/parse_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/http/parse_results.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-api/events/events.perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-api/events/events.perf.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-api/require/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-api/require/a.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-api/require/require.perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-api/require/require.perf.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-api/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-api/runner.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-api/url/url.perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-api/url/url.perf.js -------------------------------------------------------------------------------- /experimental/benchmarks/node-dc-eis/cpuParse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-dc-eis/cpuParse.sh -------------------------------------------------------------------------------- /experimental/benchmarks/node-dc-eis/fp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-dc-eis/fp.sh -------------------------------------------------------------------------------- /experimental/benchmarks/node-dc-eis/kill_node_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-dc-eis/kill_node_linux -------------------------------------------------------------------------------- /experimental/benchmarks/node-dc-eis/mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-dc-eis/mongodb.sh -------------------------------------------------------------------------------- /experimental/benchmarks/node-dc-eis/run-dc-eis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/node-dc-eis/run-dc-eis.sh -------------------------------------------------------------------------------- /experimental/benchmarks/startup/calcStartup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/startup/calcStartup.sh -------------------------------------------------------------------------------- /experimental/benchmarks/startup/nodeStartup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experimental/benchmarks/startup/startNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/startup/startNode.sh -------------------------------------------------------------------------------- /experimental/benchmarks/startup/startup.html.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/startup/startup.html.base -------------------------------------------------------------------------------- /experimental/benchmarks/startup/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/startup/startup.png -------------------------------------------------------------------------------- /experimental/benchmarks/startup/startupChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/benchmarks/startup/startupChart.json -------------------------------------------------------------------------------- /experimental/chartGen/createpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/chartGen/createpage.js -------------------------------------------------------------------------------- /experimental/chartGen/createpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/chartGen/createpng.js -------------------------------------------------------------------------------- /experimental/chartGen/gencharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/chartGen/gencharts.js -------------------------------------------------------------------------------- /experimental/chartGen/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/experimental/chartGen/lib/README.md -------------------------------------------------------------------------------- /meetings/2015-05-27/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-05-27/minutes.md -------------------------------------------------------------------------------- /meetings/2015-06-16/Acmeair Mongo on Mesos.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-06-16/Acmeair Mongo on Mesos.mov -------------------------------------------------------------------------------- /meetings/2015-06-16/Acmeair_NodeJS_v0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-06-16/Acmeair_NodeJS_v0.1.pdf -------------------------------------------------------------------------------- /meetings/2015-06-16/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-06-16/minutes.md -------------------------------------------------------------------------------- /meetings/2015-07-09/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-07-09/minutes.md -------------------------------------------------------------------------------- /meetings/2015-08-11/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-08-11/minutes.md -------------------------------------------------------------------------------- /meetings/2015-09-30/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-09-30/minutes.md -------------------------------------------------------------------------------- /meetings/2015-11-19/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2015-11-19/minutes.md -------------------------------------------------------------------------------- /meetings/2016-01-07/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-01-07/minutes.md -------------------------------------------------------------------------------- /meetings/2016-02-25/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-02-25/minutes.md -------------------------------------------------------------------------------- /meetings/2016-04-12/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-04-12/minutes.md -------------------------------------------------------------------------------- /meetings/2016-06-07/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-06-07/minutes.md -------------------------------------------------------------------------------- /meetings/2016-09-21/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-09-21/minutes.md -------------------------------------------------------------------------------- /meetings/2016-11-18/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2016-11-18/minutes.md -------------------------------------------------------------------------------- /meetings/2017-01-12/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-01-12/minutes.md -------------------------------------------------------------------------------- /meetings/2017-05-18/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-05-18/minutes.md -------------------------------------------------------------------------------- /meetings/2017-06-19/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-06-19/minutes.md -------------------------------------------------------------------------------- /meetings/2017-08-01/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-08-01/minutes.md -------------------------------------------------------------------------------- /meetings/2017-08-14/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-08-14/minutes.md -------------------------------------------------------------------------------- /meetings/2017-08-28/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-08-28/minutes.md -------------------------------------------------------------------------------- /meetings/2017-09-11/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-09-11/minutes.md -------------------------------------------------------------------------------- /meetings/2017-10-06/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-10-06/minutes.md -------------------------------------------------------------------------------- /meetings/2017-10-23/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-10-23/minutes.md -------------------------------------------------------------------------------- /meetings/2017-11-20/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-11-20/minutes.md -------------------------------------------------------------------------------- /meetings/2017-12-04/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2017-12-04/minutes.md -------------------------------------------------------------------------------- /meetings/2018-01-15/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-01-15/minutes.md -------------------------------------------------------------------------------- /meetings/2018-01-29/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-01-29/minutes.md -------------------------------------------------------------------------------- /meetings/2018-02-26/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-02-26/minutes.md -------------------------------------------------------------------------------- /meetings/2018-04-09/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-04-09/minutes.md -------------------------------------------------------------------------------- /meetings/2018-04-23/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-04-23/minutes.md -------------------------------------------------------------------------------- /meetings/2018-06-05/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-06-05/minutes.md -------------------------------------------------------------------------------- /meetings/2018-07-26/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-07-26/minutes.md -------------------------------------------------------------------------------- /meetings/2018-07-31/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-07-31/minutes.md -------------------------------------------------------------------------------- /meetings/2018-08-28/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-08-28/minutes.md -------------------------------------------------------------------------------- /meetings/2018-09-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-09-18.md -------------------------------------------------------------------------------- /meetings/2018-10-16/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-10-16/minutes.md -------------------------------------------------------------------------------- /meetings/2018-10-30/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-10-30/minutes.md -------------------------------------------------------------------------------- /meetings/2018-11-20/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-11-20/minutes.md -------------------------------------------------------------------------------- /meetings/2018-12-18/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2018-12-18/minutes.md -------------------------------------------------------------------------------- /meetings/2019-01-22/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2019-01-22/minutes.md -------------------------------------------------------------------------------- /meetings/2019-03-05/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2019-03-05/minutes.md -------------------------------------------------------------------------------- /meetings/2019-04-19/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2019-04-19/minutes.md -------------------------------------------------------------------------------- /meetings/2019-05-28/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2019-05-28/minutes.md -------------------------------------------------------------------------------- /meetings/2019-07-09/minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/meetings/2019-07-09/minutes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/package.json -------------------------------------------------------------------------------- /tools/acceptResults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/acceptResults/README.md -------------------------------------------------------------------------------- /tools/acceptResults/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/acceptResults/bridge.js -------------------------------------------------------------------------------- /tools/acceptResults/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/acceptResults/package-lock.json -------------------------------------------------------------------------------- /tools/acceptResults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/acceptResults/package.json -------------------------------------------------------------------------------- /tools/acceptResults/start_bridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/acceptResults/start_bridge.sh -------------------------------------------------------------------------------- /tools/chartGen/.gitignore: -------------------------------------------------------------------------------- 1 | dbconfig.json 2 | -------------------------------------------------------------------------------- /tools/chartGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/README.md -------------------------------------------------------------------------------- /tools/chartGen/chartcron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/chartcron.sh -------------------------------------------------------------------------------- /tools/chartGen/createpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/createpage.js -------------------------------------------------------------------------------- /tools/chartGen/createpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/createpng.js -------------------------------------------------------------------------------- /tools/chartGen/gencharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/gencharts.js -------------------------------------------------------------------------------- /tools/chartGen/gencharts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/gencharts.sh -------------------------------------------------------------------------------- /tools/chartGen/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/lib/README.md -------------------------------------------------------------------------------- /tools/chartGen/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/package-lock.json -------------------------------------------------------------------------------- /tools/chartGen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/chartGen/package.json -------------------------------------------------------------------------------- /tools/postResults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/postResults/README.md -------------------------------------------------------------------------------- /tools/postResults/postit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/tools/postResults/postit.sh -------------------------------------------------------------------------------- /www/charts/acmeair_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/acmeair_latency.png -------------------------------------------------------------------------------- /www/charts/acmeair_postfootprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/acmeair_postfootprint.png -------------------------------------------------------------------------------- /www/charts/acmeair_prefootprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/acmeair_prefootprint.png -------------------------------------------------------------------------------- /www/charts/acmeair_throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/acmeair_throughput.png -------------------------------------------------------------------------------- /www/charts/require_cached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/require_cached.png -------------------------------------------------------------------------------- /www/charts/require_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/require_new.png -------------------------------------------------------------------------------- /www/charts/start_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/start_stop.png -------------------------------------------------------------------------------- /www/charts/startup_footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/charts/startup_footprint.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/index.html -------------------------------------------------------------------------------- /www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/benchmarking/HEAD/www/styles.css --------------------------------------------------------------------------------