Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pm2 / usr / local / lib / pm2 / node_modules / nssocket / examples / bla.js
Size: Mime:

var nssocket = require('../lib/nssocket');

var sockets = [];
var server = nssocket.createServer(function (socket) {

	sockets.push(socket);

    socket.data('Connecting', function (data) {
      console.log("There are now", sockets.length);

      for(var i=0, l=sockets.length; i<l; i++) {
      	sockets[i].send('Broadcasting', data);
      }
      console.dir(data);
    });

}).listen(4949);