Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_test-double-benchmarker.js « benchmark - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a8c5f9264efc896e49fe48b57ce4a6d91711334 (plain)
1
2
3
4
5
6
7
'use strict';

const http = require('http');

http.get(process.env.path, function() {
  console.log(JSON.stringify({ throughput: 1 }));
});