mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
dcfda1007b
In the hopes of soon having the benchmark code linted, this change groups all the likely non-controversial lint-compliance changes such as indentation, semi-colon usage, and single-vs.-double quotation marks. Other lint rules may have subtle performance implications in the V8 currently shipped with Node.js. Those changes will require more careful review and will be in a separate change. PR-URL: https://github.com/nodejs/node/pull/5429 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brian White <mscdex@mscdex.net>
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
'use strict';
|
|
|
|
var http = require('http');
|
|
var port = parseInt(process.env.PORT, 10) || 8000;
|
|
var defaultLag = parseInt(process.argv[2], 10) || 100;
|
|
|
|
http.createServer(function(req, res) {
|
|
res.writeHead(200, { 'content-type': 'text/plain',
|
|
'content-length': '2' });
|
|
|
|
var lag = parseInt(req.url.split('/').pop(), 10) || defaultLag;
|
|
setTimeout(function() {
|
|
res.end('ok');
|
|
}, lag);
|
|
}).listen(port, 'localhost');
|