我刚从在线教程中抓取了该代码:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(3000, 'my.ip.is.here');
console.log('Server running at http://my.ip.is.here:3000/');
当我开始时:
node app.js
我收到以下错误:
events.js:48 抛出参数1; //未处理的'错误'事件 ^错误:接受ENOSYS 在errnoException(net.js:614:11) 在TCP.onconnection(net.js:788:24)
我在ubuntu 11.10服务器VPS上,我有nginx作为Web服务器,但它没有启动。
我做错了吗?
答案 0 :(得分:0)
我的node.js版本来自git rep我尝试使用nodejs.org,它现在运行正常。