2013-11-27 127 views
0

iam對nodejs很新穎。我發現這個服務器創建程序很難Nodejs服務器創建未運行

var http = require("http"); 
function onRequest(request, response) { 
console.log("Request received."); 
response.writeHead(200, {"Content-Type": "text/plain"}); 
response.write("Hello World"); 
response.end(); 
} 

http.createServer(onRequest).listen(); 

回答

3

你不得不提到要監聽的端口號。

你的代碼必須在監聽中有一個端口號。

http.createServer(onRequest).listen(8080); 

的端口號8080已經在使用中....所以我用

像8083另一個端口號....它的工作原理...

+0

感謝名單....我得到它 – Anand