Search code examples
angularjsexpresssocket.ionpmmean.io

Mean.io framework with socket.io


How to use socket.io in Mean.io stack?

First of all, Mean.io changes their folder structure very regularly.. So my question is where is the best place to configure socket.io ? or is it better to use express.io ?

Second I am still not quite sure where to look for to find code that tells mean.io to listen for port, I have found a port is defined in config folder in all.js file, but real problem is as soon as I define server.listen(port) app doesn't load. and if I don't app loads but socket.io doesn't work.

Also I have another question about /socket.io/socket-io.js file? I have copied that in index folder, but my app can't find it or says 404 error. I know it's not an actual file sitting on any such location as far as I have understood, also people suggested to put that line as 127.0.0.1/socket.io/socket-io.js but none made the js file available for the app to be able to run socket.io.

What is the proper way of defining socket.io in mean.io framework?


Solution

  • I also faced the same issue and took me about a week to finally get it right. I'll try to explain what I did:

    app.js

    In this file, I just invoke the code that creates and sets up a socket.io object for me, which is then passed to the routes module.

    'use strict';
    
    /*
     * Defining the Package
     */
    var Module = require('meanio').Module;
    
    var MeanSocket = new Module('chat');
    
    /*
     * All MEAN packages require registration
     * Dependency injection is used to define required modules
     */
    MeanSocket.register(function(app, http) {
    
        var io = require('./server/config/socketio')(http);
    
        //We enable routing. By default the Package Object is passed to the routes
        MeanSocket.routes(io);
    
        return MeanSocket;
    });
    

    server/config/socketio.js

    This file simply configures the socket.io object. Please note that I had to upgrade meanio module to version 0.5.26 for this work, as http object (express server) is not available in older meanio versions. Moreover, in case you want to use ssl, you can inject https instead of http.

    'use strict';
    
    var config = require('meanio').loadConfig(),
        cookie = require('cookie'),
        cookieParser = require('cookie-parser'),
        socketio = require('socket.io');
    
    module.exports = function(http) {
    
        var io = socketio.listen(http);
    
        io.use(function(socket, next) {
            var data = socket.request;
    
            if (!data.headers.cookie) {
                return next(new Error('No cookie transmitted.'));
            }
    
            var parsedCookie = cookie.parse(data.headers.cookie);
            var sessionID = parsedCookie[config.sessionName];
            var parsedSessionID = cookieParser.signedCookie(parsedCookie[config.sessionName], config.sessionSecret);
    
            if (sessionID === parsedSessionID) {
                return next(new Error('Cookie is invalid.'));
            }
    
            next();
        });
    
        return io;
    };
    

    routes/chat.js

    Finally, use the routes file to define the socket events, etc.

    'use strict';
    
    // The Package is passed automatically as first parameter
    module.exports = function(MeanSocket, io) {
    
        io.on('connection', function(socket) {
    
            console.log('Client Connected');
    
            socket.on('authenticate', function(data, callback) {
    
            });
        });
    };
    

    Hope this helps!