mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 17:50:27 +00:00
7 lines
237 B
JavaScript
7 lines
237 B
JavaScript
var http = require('http');
|
|
http.createServer(function (req, res) {
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('Hello World\n');
|
|
}).listen(8124, "10.0.0.41");
|
|
console.log('Server running at http://127.0.0.1:8124/');
|