node-inspector/test/hello.js

10 строки
249 B
JavaScript
Исходник Обычный вид История

2010-10-25 10:39:15 +04:00
var http = require('http');
2010-07-18 03:21:51 +04:00
var x = 0;
http.createServer(function (req, res) {
x += 1;
2010-07-18 03:21:51 +04:00
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World ' + x);
}).listen(8124);
2010-07-18 03:21:51 +04:00
console.log('Server running at http://127.0.0.1:8124/');