mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
24 lines
518 B
JavaScript
24 lines
518 B
JavaScript
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);
|
|
sys.puts('Server running at http://127.0.0.1:'+PORT+'/')
|
|
|
|
s.addListener('listening', function () {
|
|
|
|
childProcess.exec('curl http://127.0.0.1:'+PORT+'/', function (err, stdout, stderr) {
|
|
if (err) throw err;
|
|
s.close();
|
|
sys.puts('curled response correctly');
|
|
});
|
|
|
|
});
|
|
|