Last active
December 10, 2015 03:18
-
-
Save ralphtheninja/4373760 to your computer and use it in GitHub Desktop.
mux-demux test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MuxDemux = require('mux-demux'); | |
var duplex = require('duplex'); | |
var net = require('net'); | |
var server = net.createServer(function (con) { | |
var mdm2 = MuxDemux(function (stream) { | |
if (stream.writable && stream.meta === 'times') { | |
var d = duplex().on('_data', function(data) { | |
if (data === 'hello') { | |
this._data('world'); | |
} | |
else { | |
this._data('wrong command'); | |
} | |
}); | |
stream.pipe(d).pipe(stream); | |
} | |
}); | |
con.pipe(mdm2).pipe(con); | |
}); | |
server.listen(8642, function () { | |
var con = net.connect(8642); | |
var mdm1 = MuxDemux(); | |
con.pipe(mdm1).pipe(con); | |
var ds = mdm1.createStream('times'); | |
setInterval(function () { | |
if (Math.random() > 0.3) { | |
ds.write('hello'); | |
} | |
else { | |
ds.write('blabla'); | |
} | |
}, 1e2); | |
ds.on('data', function(data) { | |
console.log('client got response:', data); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment