TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Dnode - language agnostic asynchronous RPC built on socket.io
20 points
by
reddittor
about 14 years ago
2 comments
thirty-thirty
about 14 years ago
<p><pre><code> var dnode = require('dnode') dnode(function(client){ this.is = function(cb){client.what(function(data){cb(data+' is awesome!')})} }).listen(3003).on('ready', function(){ dnode({what:function(cb){cb('dnode')}}).connect(3003,function(server){ server.is(function(data){console.log(data)}) }) })</code></pre>
Maximosis
about 14 years ago
Brilliant!