diff --git a/server.js b/server.js index d5263eb..d903439 100644 --- a/server.js +++ b/server.js @@ -6,6 +6,6 @@ var app=http.createServer(function (req, res) { //sets the right header and status code res.end('Hello World\n'); //outputs string with line end symbol -}).listen(1337, "127.0.0.1"); +}).listen(1337); //sets port and IP address of the server console.log('Server running at http://127.0.0.1:1337/');