Separating file server and socket.io logic in node.js

后端 未结 4 1236
栀梦
栀梦 2020-12-04 05:58

I\'m fairly new to node.js and I\'ve found its quite complicated separating a project into multiple files as the project grows in size. I had one large file before which ser

4条回答
  •  温柔的废话
    2020-12-04 06:24

    i would do something like this.

    app.js

    var app = require('http').createServer(handler),
        sockets = require('./sockets'),
        fs = require('fs');
    
    function handler (req, res) {
      fs.readFile(__dirname + '/index.html',
      function (err, data) {
        if (err) {
          res.writeHead(500);
          return res.end('Error loading index.html');
        }
    
        res.writeHead(200);
        res.end(data);
      });
    }
    
    sockets.startSocketServer(app);
    app.listen(80);
    

    and sockets.js

    var socketio = require('socket.io'),
            io, clients = {};
    
    module.exports = {
    
            startSocketServer: function (app) {
                    io = socketio.listen(app);
    
                    // configure
                    io.configure('development', function () {
                            //io.set('transports', ['websocket', 'xhr-polling']);
                            //io.enable('log');
                    });
    
                    io.configure('production', function () {
                            io.enable('browser client minification');  // send minified client
                            io.enable('browser client etag');          // apply etag caching logic based on version number
                            io.set('log level', 1);                    // reduce logging
                            io.set('transports', [                     // enable all transports (optional if you want flashsocket)
                                'websocket'
                              , 'flashsocket'
                              , 'htmlfile'
                              , 'xhr-polling'
                              , 'jsonp-polling'
                            ]);
                    });
                    //
    
                    io.sockets.on('connection', function (socket) {
                            console.log("new connection: " + socket.id);
    
                            socket.on('disconnect', function () {
                                    console.log("device disconnected");
    
                            });
    
                            socket.on('connect_device', function (data, fn) {
                                    console.log("data from connected device: " + data);
                                    for (var col in data) {
                                            console.log(col + " => " + data[col]);
                                    }
    
    
                            });
                    });
            }
    };
    

    i just copy&pasted some of my old code - don't really know what changed in the last versions of socket.io, but this is more about the structure than the actual code.

    and i would only use 2 files for your purposes, not 3. when you think about splitting it up further, maybe one other file for different routes ...

    hope this helps.

提交回复
热议问题