无法运行基本的socket.io示例

时间:2014-04-09 20:22:46

标签: javascript html node.js sockets socket.io

我有index.html:

<script src="socket.io/socket.io.js"></script>
<script>
  var socket = io.connect('http://localhost');
  socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
  });
</script>

app.js:

var app = require('http').createServer(handler)
  , io = require('socket.io').listen(app)
  , fs = require('fs')

app.listen(80);

function handler (req, res) {
  fs.readFile(__dirname + '/index.html',
  function (err, data) {
if (err) {
  res.writeHead(500);
  return res.end('Error loading index.html');
}

res.writeHead(200);
res.end(data);
  });
}

io.sockets.on('connection', function (socket) {
  socket.emit('news', { hello: 'world' });
  socket.on('my other event', function (data) {
console.log(data);
  });
});

这些文件放在/ var / www。

我跑了:

sudo npm install socket.io

所以,现在我有一个文件夹:/var/www/node_modules/socket.io

在我的浏览器(chrome)中,我输入了#localhost&#39; - 我在socket.io.js中找到了一个文件未找到错误(在chrome&#39;控制台中)。所以在index.html中,我将src行修改为:

<script src="node_modules/socket.io/lib/socket.io.js"></script>

但后来我在其他地方找到了一个找不到错误的文件(在socket.io.js内):
未捕获的ReferenceError:未定义require

以下一行:

var client = require('socket.io-client');

我是否只是不断更改所有这些文件的路径? 我也得到了一个未定义的&#39; index.html的错误位于以下行:

var socket = io.connect('http://localhost');

服务器端
当我进入终端并输入

node app.js

我收到以下错误:
   info - socket.io开始了    warn - 引发错误:错误:听EACCES

请帮忙。谢谢。

1 个答案:

答案 0 :(得分:0)

通过在我的情况下将端口号(因为80已经在使用中)更改为8000,我解决了服务器端问题。

然后我通过终端&amp;运行了app.js.让它继续运行。

我打字

http://localhost:8000/index.html 

进入我的网络浏览器,一切正常。

我甚至用过:

<script src="socket.io/socket.io.js"></script>
index.html中的

。如果先让服务器运行,浏览器就能找到所有正确的nodejs文件的路径。