-
Notifications
You must be signed in to change notification settings - Fork 31.2k
/
Copy pathmodule-require.js
79 lines (66 loc) Β· 1.6 KB
/
module-require.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
const fs = require('fs');
const common = require('../common.js');
const tmpdir = require('../../test/common/tmpdir');
const benchmarkDirectory = tmpdir.resolve('nodejs-benchmark-module');
const bench = common.createBenchmark(main, {
type: ['.js', '.json', 'dir'],
n: [1e4],
});
function main({ type, n }) {
tmpdir.refresh();
createEntryPoint(n);
switch (type) {
case '.js':
measureJSFile(n);
break;
case '.json':
measureJSONFile(n);
break;
case 'dir':
measureDir(n);
}
tmpdir.refresh();
}
function measureJSFile(n) {
bench.start();
for (let i = 0; i < n; i++) {
require(`${benchmarkDirectory}/${i}`);
}
bench.end(n);
}
function measureJSONFile(n) {
bench.start();
for (let i = 0; i < n; i++) {
require(`${benchmarkDirectory}/json_${i}.json`);
}
bench.end(n);
}
function measureDir(n) {
bench.start();
for (let i = 0; i < n; i++) {
require(`${benchmarkDirectory}${i}`);
}
bench.end(n);
}
function createEntryPoint(n) {
fs.mkdirSync(benchmarkDirectory);
const JSFileContent = 'module.exports = [];';
const JSONFileContent = '[]';
for (let i = 0; i < n; i++) {
// JS file.
fs.writeFileSync(`${benchmarkDirectory}/${i}.js`, JSFileContent);
// JSON file.
fs.writeFileSync(`${benchmarkDirectory}/json_${i}.json`, JSONFileContent);
// Dir.
fs.mkdirSync(`${benchmarkDirectory}${i}`);
fs.writeFileSync(
`${benchmarkDirectory}${i}/package.json`,
'{"main": "index.js"}',
);
fs.writeFileSync(
`${benchmarkDirectory}${i}/index.js`,
JSFileContent,
);
}
}