Test update

This commit is contained in:
Joseph Henry 2015-11-23 05:15:19 -08:00
parent 3d163f7044
commit 275a76ff5c
22 changed files with 469 additions and 7 deletions

View file

@ -0,0 +1,7 @@
var http = require('http');
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Welcome to the machine!\n");
});
server.listen(8080);
console.log("Server running!");