我对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();
答案 0 :(得分:3)
您必须提及要收听的端口号。
您的代码必须在监听中包含一个端口号。
http.createServer(onRequest).listen(8080);
端口号8080已经在使用....所以我用了
另一个端口号,如8083 ....它有效...