mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
3b3ceafaf9
For variables such as LD_LIBRARY_PATH and DYLD_LIBRARY_PATH that are needed for dynamically linked binaries PR-URL: https://github.com/nodejs/node/pull/16405 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
'use strict';
|
|
|
|
const http = require('http');
|
|
|
|
http.get(process.env.test_url, function() {
|
|
console.log(JSON.stringify({ throughput: 1 }));
|
|
});
|