You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
524 B

require('../common');
var sys = require('sys'),
http = require('http'),
childProcess = require('child_process');
s = http.createServer(function (request, response) {
response.writeHead(304);
response.end();
});
s.listen(PORT, function () {
childProcess.exec('curl -i http://127.0.0.1:'+PORT+'/', function (err, stdout, stderr) {
if (err) throw err;
s.close();
error('curled response correctly');
error(sys.inspect(stdout));
});
});
console.log('Server running at http://127.0.0.1:'+PORT+'/')