diff --git a/api/app.js b/api/app.js deleted file mode 100644 index 3991c3be..00000000 --- a/api/app.js +++ /dev/null @@ -1,7 +0,0 @@ -var http = require('http'); - -//create a server object: -http.createServer(function (req, res) { - res.write('Hello World!'); //write a response to the client - res.end(); //end the response -}).listen(49152); //the server object listens on port 8080