Skip to content

Socket.IO and Heroku

forsurerad edited this page Jul 28, 2011 · 2 revisions

Heroku and Socket.IO do not play well out of the box with each other. Socket.IO needs to have it's transport set to xhr-polling with a 10 second interval.

io.set('transports', ['xhr-polling']); io.set('polling duration', 10);

Clone this wiki locally