From e4eb8cb1ec29c7610d0a3e3ccba1a98f92400361 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Wed, 23 Nov 2016 14:51:18 -0500 Subject: [PATCH] Socket.io sync looks to be working now...YAY! --- package.json | 1 - server.js | 25 +++---------------------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/package.json b/package.json index 58b1e3c..8810d20 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "version": "0.0.1", "dependencies": { "body-parser": "^1.12.4", - "chokidar": "^1.6.1", "connect-ensure-login": "^0.1.1", "cookie-parser": "^1.4.3", "express": "^4.12.4", diff --git a/server.js b/server.js index 1acae7d..b0ebac5 100644 --- a/server.js +++ b/server.js @@ -118,14 +118,10 @@ io.on('connection', function(socket){ winston.info('new contents from client written to allNotes.txt'); }); }); - } - }); - // Send new content to all other clients EXCEPT the orig sender. - fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){ - if (!err){ - socket.broadcast.emit('download allNotes',data); + // Send new content to all other clients EXCEPT the orig sender. + socket.broadcast.emit('download allNotes',msg); winston.info('sent content update to other clients'); - } else { winston.error(err); } + } }); }); socket.on('cm-save', function(msg){ @@ -133,21 +129,6 @@ io.on('connection', function(socket){ }); }); -//var chokidar = require('chokidar'); -//var watcher = chokidar.watch(notePath, { - //ignored: /[\/\\]\./, - //persistent: true -//}); -//watcher.on('change', function(){ - //winston.info('file watcher change event'); - //fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){ - //if (!err){ - //winston.info('successful file read'); - //io.emit('download allNotes',data); - //} else { winston.error(err); } - //}); -//}); - http.listen(3000, function() { winston.info("Started on PORT 3000"); });