win7日文系统 32位
下载安装node后执行Hello World代码
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');`
输出结果为:
c:\Program Files\nodejs>node index.js
Server running at http://127.0.0.1:8124/
用浏览器访问 http://127.0.0.1:8124/
会一直处在等待响应状态
到目前尝试过的版本:v0.6.15, v0.6.14, v0.7.8
也尝试过将防火墙关闭
8 回复
谢谢你的回复
我对代码做了如下改动
}).listen(8124, function(){
console.log("It's OK!");
});
输出结果为:
c:\node\test>node index.js
Server running at http://127.0.0.1:8124/
It’s OK!
你好,谢谢你的提示
我在执行前取得端口信息片段如下
...
TCP 0.0.0.0:5357 0.0.0.0:0 LISTENING
TCP 0.0.0.0:5432 0.0.0.0:0 LISTENING
TCP 0.0.0.0:41380 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49152 0.0.0.0:0 LISTENING
...
执行程序哦后的端口信息片段
...
TCP 0.0.0.0:5357 0.0.0.0:0 LISTENING
TCP 0.0.0.0:5432 0.0.0.0:0 LISTENING
TCP 0.0.0.0:8124 0.0.0.0:0 LISTENING
TCP 0.0.0.0:41380 0.0.0.0:0 LISTENING
TCP 0.0.0.0:49152 0.0.0.0:0 LISTENING
...