ZeroTierOne/netcon/docker-test/nodejs/nodejs-0.10.36-4.fc23/httpserver.js

8 lines
251 B
JavaScript
Raw Normal View History

2015-11-23 13:15:19 +00:00
var http = require('http');
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
2015-11-23 13:59:05 +00:00
response.end("welcome to the machine!\n");
2015-11-23 13:15:19 +00:00
});
server.listen(8080);
console.log("Server running!");