MCPcopy Index your code
hub / github.com/nodejs/node / main

Function main

benchmark/http2/simple.js:16–36  ·  view source on GitHub ↗
({ requests, streams, clients, duration })

Source from the content-addressed store, hash-verified

14}, { flags: ['--no-warnings'] });
15
16function main({ requests, streams, clients, duration }) {
17 const http2 = require('http2');
18 const server = http2.createServer();
19 server.on('stream', (stream) => {
20 const out = fs.createReadStream(file);
21 stream.respond();
22 out.pipe(stream);
23 stream.on('error', (err) => {});
24 });
25 server.listen(0, () => {
26 bench.http({
27 path: '/',
28 port: server.address().port,
29 requests,
30 maxConcurrentStreams: streams,
31 clients,
32 duration,
33 threads: clients,
34 }, () => { server.close(); });
35 });
36}

Callers

nothing calls this directly

Calls 8

listenMethod · 0.80
httpMethod · 0.80
addressMethod · 0.65
closeMethod · 0.65
requireFunction · 0.50
onMethod · 0.45
createReadStreamMethod · 0.45
respondMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…