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) {
|
2010-07-21 04:59:26 +04:00
|
|
|
x += 1;
|
2010-07-18 03:21:51 +04:00
|
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
|
|
res.end('Hello World ' + x);
|
2010-07-24 21:17:27 +04:00
|
|
|
}).listen(8124);
|
2010-07-18 03:21:51 +04:00
|
|
|
console.log('Server running at http://127.0.0.1:8124/');
|