это мой index.html
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<script src="/socket.io/socket.io.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
</head>
<body>
<ul id="messages"></ul>
<script>
var socket = io();
socket.on('testerEvent', function(data){
console.log(data)
});
</script>
</body>
</html>
это мой index.js
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
io.on('connection', function(socket){
socket.emit('testerEvent', { description: 'A custom event named testerEvent!'});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
В index.html слушатель не работает на стороне клиента, но работает на стороне сервера.
Я не знаю, что случилось.