๐Ÿ“ฆ inventvenkat / firstproject

๐Ÿ“„ index.js ยท 10 lines
1
2
3
4
5
6
7
8
9
10var http = require("http");
http.createServer(function (request, response) {

 //  response.writeHead(200, {'Content-Type': 'text/plain'});
   response.end('venkatesh\nSathish');
	console.log("hi");
}).listen(8085);

console.log('Server running at http://127.0.0.1:8081/');