我使用以下代码创建一个名为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,但没有结果。我使用浏览器,无法访问。
还有一件事,我无法杀死这个过程。