mirror of https://github.com/lukechilds/node.git
Ryan Dahl
15 years ago
2 changed files with 47 additions and 6 deletions
@ -0,0 +1,19 @@ |
|||
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(8000); |
|||
|
|||
childProcess.exec('curl http://127.0.0.1:8000/', function (err, stdout, stderr) { |
|||
if (err) throw err; |
|||
s.close(); |
|||
sys.puts('curled response correctly'); |
|||
}); |
|||
|
|||
sys.puts('Server running at http://127.0.0.1:8000/') |
Loading…
Reference in new issue