var http = require("http");
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain;charset=utf-8'});
response.end('Uğurola Godoro\n');
}).listen(8081);
console.log('Sunucu çalışıyor : http://127.0.0.1:8081/');
Dosyayı İndir