Updated README, fixed node.js test bug

This commit is contained in:
Joseph Henry
2015-11-23 05:59:05 -08:00
parent 8b9b593256
commit b83aefcf8f
6 changed files with 468 additions and 96 deletions

View File

@ -1,7 +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");
response.end("welcome to the machine!\n");
});
server.listen(8080);
console.log("Server running!");