syndilights/displayclient/html/hello_node.js

7 lines
239 B
JavaScript
Raw Normal View History

2013-09-01 22:52:39 +02:00
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');