This commit is contained in:
José Valdiviesso 2019-03-09 18:08:39 +00:00
parent ed591eec6f
commit dede15911f
1 changed files with 0 additions and 7 deletions

View File

@ -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