Windows nodejs二进制文件未返回任何结果

时间:2011-09-06 08:38:09

标签: node.js

我从http://node-js.prcn.co.cc/

下载nodejs二进制文件

我使用以下代码创建一个名为hello_http.js的hello world js文件:

var sys = reuire('sys'),  
    http = require('http');

var server = http.createServer(function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end('Hello Http');
});

server.listen(8000, "127.0.0.1");

sys.puts("Server running at http://127.0.0.1:8000");

然后我运行node hello_http.js &

我卷曲http://localhost:80000,但没有结果。我使用浏览器,无法访问。

还有一件事,我无法杀死这个过程。

0 个答案:

没有答案