Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem using socket.io in routes.

In my app.js. I have specified my route.

app.get('/', routes.index);

I have an index.js file for my route

exports.index = function(req, res){
    res.render('index', { title: 'Example Title' });
    io.sockets.on('connection', function(socket){
    ...
    });
});

However, I keep getting the error "ReferenceError: io is not defined" in index.js. Do I need to pass the io object into each route or require socket.io in each route?

share|improve this question
This isn't really how socket.io is built to be used. If you are trying to use each route as a specific socket namespace there are better ways to do this, can you be more specific as to what you are trying to accomplish? – Sdedelbrock Nov 12 '12 at 2:36

1 Answer

I will show you how I use socket.io in my app, even though I am not sure if this is the best practice in this matter.

In my app.js I have the following lines:

var io = require('socket.io').listen(server, { log: false });
routeRegistrar.init(app, io);

routeRegistrar is an auxiliary function that I use simply to go through every controller and register its routes, see:

var fs = require('fs');

var controllersFolder = "controllers";
var controllersFolderPath = __dirname + '/../' + controllersFolder + "/";

module.exports.init = function(app, io){
    fs.readdirSync(controllersFolderPath).forEach(function(controllerName){
        require(controllersFolderPath + controllerName).init(app, io);
    }); 
};

Note that I propagate the io var to every controller, so its available to every one! In the controller I have the following:

var sockets; //see that this variable becomes global to the controller
module.exports.init = function(app, io) {
    app.get("/chat", chat);

    sockets = io.sockets;
    sockets.on('connection', function(socket) {
        //do any cool stuff here
    });
};

function chat(){
    //sockets is available here, at the route level - so do more cool stuff here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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