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
}