在 Kubuntu 我已经安装了 node.jssudo apt-get install nodejs
然后我制作了一个名为 example.js 的 js 文件,其中包含
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
然后我用node example.js
但我没有看到日志
在浏览器中,我收到一条错误消息,提示找不到连接。
如果我ping http://127.0.0.1
然后我得到一个错误说未知主机
我究竟做错了什么?我是否错误地安装了 node.js?