Use socketio for syncing task changes across clients

This commit is contained in:
Abhishek Das
2013-03-30 18:10:12 +05:30
parent 0485272d93
commit 4bb398353e
502 changed files with 206510 additions and 64 deletions
@@ -0,0 +1,8 @@
var http = require('http')
, fspfs = require('../');
var server = http.createServer(function(q,r){ r.writeHead(200); r.end(':3') })
, flash = fspfs.createServer();
server.listen(8080);
flash.listen(8081,server);
+5
View File
@@ -0,0 +1,5 @@
var http = require('http')
, fspfs = require('../');
var flash = fspfs.createServer();
flash.listen();