mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const http = require('http');
|
||
|
|
||
|
http.get(process.env.path, function() {
|
||
|
console.log(JSON.stringify({throughput: 1}));
|
||
|
});
|