i have a project and I'm using socket.io with express ,

so what i need (i tried) is broadcasting a message but from an express action. is this possible i don't know how to get a reference to send or broadcast.

app.get('/', function(req, res) {
//i need to send messages from here 
});

Other things like using both express+socket.io is working with me :)

link|improve this question

67% accept rate
feedback

5 Answers

As long as I understand,

Why not use the socket message type as an event instead of a http get or post? On the client side you would send a message via the websocket with let's say an event property.

So in your case:

<script>
  // Initialize socket.io ...

  // and then
  socket.send({event: 'homepage loaded', foo: 'bar'});
</script>

And on the server side:

var io = io.listen(server);

io.on('connection', function (client) {
  client.on('message', function (message) {
    if (message.event == 'homepage loaded') {
      client.broadcast(...);
    }
  });
});
link|improve this answer
feedback

You might want to have a look at my socket.io + Express primer. What you want is covered in detail there. tl;dr version:

// Send to all connected sockets
io.sockets.send('Hello, World!');

// Send to all sockets in a specified room
io.sockets.in('room').send('Hello, Room!');

Where io is the value returned by the call to socketio.listen(). You can place that code anywhere in your application, eg in your app.get callbacks.

link|improve this answer
feedback

Check out my example repo where I use ExpressJS + Juggernaut(pubsub over socket.io):

http://github.com/shripadk/express-juggernaut-demo

This might be overkill for what you need as it uses Publish/Subscribe. But it does, to a certain extent, solve your issue of using regular ExpressJS routes. Checkout the master branch after cloning the repository:

git checkout master

link|improve this answer
When i execute "git clone git://github.com/shripadk/express-juggernaut.git" i get this error:"fatal: The remote end hung up unexpectedly" – ibmkhd Nov 5 '10 at 13:25
Do you mean executing this command "git clone git://github.com/shripadk/express-juggernaut-demo.git",this is work for me but when i make "git checkout master" i get "Already on 'master' ", i ignored this and run the demo put i get this – ibmkhd Nov 5 '10 at 13:28
The 'sys' module is now called 'util'. It should have a similar interface. node.js:50 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: Cannot find module 'utils' at resolveModuleFilename (node.js:265:13) at loadModule (node.js:231:20) at require (node.js:291:14) at Object.<anonymous> (/home/ibrahim/ws/Lebanon/staTest/express-juggernaut-demo/lib/support/juggernaut‌​/lib/juggernaut/channel.js:2:13) at Module._compile (node.js:348:23) at Object..js (node.js:356:12) at Module.load (node.js:279:25) – ibmkhd Nov 5 '10 at 13:31
at loadModule (node.js:251:12) at require (node.js:291:14) at Object.<anonymous> (/home/ibrahim/ws/Lebanon/staTest/express-juggernaut-demo/lib/support/juggernaut‌​/lib/juggernaut/publish.js:4:15) – ibmkhd Nov 5 '10 at 13:31
Use node v0.2.4! I guess you are on node v0.3.0! you need to wait till all modules work with v0.3.0 to use that version. :) – Shripad K Nov 5 '10 at 13:49
show 9 more comments
feedback
up vote 0 down vote accepted

I Found a nice example how to make what i need but with faye it's here http://nodecasts.org/.

I don't know the difference between Juggernaut ,Faye and direct Socket.io but Faye is good

for my case .And i think both of them use Socket.io internally.

link|improve this answer
Faye doesn't use socket.io internally. It is based on bayeux protocol. However, it is good :) – Shripad K Nov 5 '10 at 19:52
feedback

This problem is thoroughly explained and resolved here: http://www.ianwootten.co.uk/2011/07/04/maintaining-references-to-sockets-with-express-and-socket-io

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.