Hola a todos, estoy intentando crear una aplicacion con nodejs + express 4 + socket.io, pero tengo problemas al conectar socket.io, he mirado lo habido y por haber y no se como hacer esto, al iniciar el servicio dice info - socket.io strarted, asi comienzo:
Código Javascript
:
Ver originalvar app = express();
// var io = require('socket.io').listen(app);
// starting http and https servers
var http = require('http').createServer(app).listen(app, function(){
console.log("http server listening on port 3000");
});
// starting socket.io & session handler
var io = require('socket.io').listen(http);
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
y en mi archivo html:
Código HTML:
Ver original var socket = io.connect('http://localhost:3000');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
este codigo lo extraje de la pagina oficiol de socket.io, alguien q me ayude un triz urgente :) gracias.