diff options
author | Hakim El Hattab | 2015-09-29 10:07:21 +0200 |
---|---|---|
committer | Hakim El Hattab | 2015-09-29 10:07:21 +0200 |
commit | b16bc6fc2e948dedf597004fb99e69d4042daa47 (patch) | |
tree | 7fbcdd466e7c3a1109cc602500950a9f86a0beba /plugin/notes-server/index.js | |
parent | 5117048a5b86212a35d5309775a0ac646b1bd30c (diff) |
speaker notes work with socket.io 1.0 #1375
Diffstat (limited to 'plugin/notes-server/index.js')
-rw-r--r-- | plugin/notes-server/index.js | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js index df917f1..75838de 100644 --- a/plugin/notes-server/index.js +++ b/plugin/notes-server/index.js @@ -1,23 +1,25 @@ +var http = require('http'); var express = require('express'); var fs = require('fs'); var io = require('socket.io'); var _ = require('underscore'); var Mustache = require('mustache'); -var app = express.createServer(); +var app = express(); var staticDir = express.static; +var server = http.createServer(app); -io = io.listen(app); +io = io(server); var opts = { port : 1947, baseDir : __dirname + '/../../' }; -io.sockets.on( 'connection', function( socket ) { +io.on( 'connection', function( socket ) { - socket.on( 'connect', function( data ) { - socket.broadcast.emit( 'connect', data ); + socket.on( 'new-subscriber', function( data ) { + socket.broadcast.emit( 'new-subscriber', data ); }); socket.on( 'statechanged', function( data ) { @@ -26,12 +28,8 @@ io.sockets.on( 'connection', function( socket ) { }); -app.configure( function() { - - [ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) { - app.use( '/' + dir, staticDir( opts.baseDir + dir ) ); - }); - +[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) { + app.use( '/' + dir, staticDir( opts.baseDir + dir ) ); }); app.get('/', function( req, res ) { @@ -52,7 +50,7 @@ app.get( '/notes/:socketId', function( req, res ) { }); // Actually listen -app.listen( opts.port || null ); +server.listen( opts.port || null ); var brown = '\033[33m', green = '\033[32m', |