我是使用node.js的初学者,所以我有一些错误和一些问题。
首先:我使用此代码制作服务器
var http = require("http");
http.createServer(function (request, response) {
// Send the HTTP header
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// Send the response body as "Hello World"
response.end('Hello World\n');
}).listen(8080);
// Console will print the message
console.log('Server running at http://127.0.0.1:8080/');
当我尝试http://127.0.0.1:8080时,我在控制台日志中收到此错误
GET http://127.0.0.1:8080/ net::ERR_CONNECTION_REFUSED
我的server.js直接在wamp的www里面。