我正在尝试使用node.js执行javascript代码,我总是会遇到两个错误:
.port 1无效
.port 2无效
这是我的javascript代码:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');
有什么想法吗?
答案 0 :(得分:0)
你还有其他的东西在8124上听吗?
netstat -an|grep :8124