aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/www.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/bin/www.js b/bin/www.js
index 1d252bf..9cc2f2d 100644
--- a/bin/www.js
+++ b/bin/www.js
@@ -4,15 +4,9 @@ var http = require('http');
var server = http.createServer(app);
-var io = require('socket.io')(server);
-
var port = '3000';
app.set('port', port);
-io.on('connection', function(socket){
- console.log('a user connected');
-});
-
server.listen(port, function(){
console.log('listening on port 3000');
});