DNode is an asynchronous object-oriented RPC system for node.js that lets you call remote functions.
0
votes
1answer
53 views
DNode server method timeout
We are looking to use NodeJs DNode (https://github.com/substack/dnode) in a project where we need RPC functionality.
It has been setup and tested and seems a good fit for the project.
One small ...
0
votes
1answer
157 views
Node.js Real-Time Stuff with DNode/shoe and all about load balancing
I have built a little system that uses dnode, shoe and browserify on the client, and NodeJS and dnode/shoe on the server end. I'm wondering if it is a good idea to use dnode (RPC) as the sole protocol ...
0
votes
0answers
47 views
DNode implementation for websocket communication in node.js
I don't understand the way DNode uses websocket communication.
Some say it uses socket.io others say sockjs.
Which one is it? Or is it possible to choose?
I'm trying to use DNode, but I also need ...
0
votes
0answers
88 views
DNode basic example from browser in Node.js
I cann't get the Shoe module working, because NPM gives errors.
How do I transform the example provided by Dnode to not use the Shoe module?
I have the other "non browser" examples working with net ...
3
votes
1answer
457 views
Inter-child-process communication options in node.js cluster
So I'm working on a node.js game server application at the moment, and I've hit a bit of a wall here. My issue is that I'm using socket.io to accept inbound connections from game clients. These ...
0
votes
1answer
60 views
How to encrypt a dnode connection?
I am using dnode as an RPC-style library within my Node.js application.
Now I would like to have secure dnode's connection using public-key-cryptography. I guess that this should be possible anyhow ...
0
votes
0answers
27 views
Is there DNode session library without express?
I made socket server base on DNode.
So I wanna using Redis to session storage. but I can't found.
I hope session management wrapper or library using Redis.
Thanks
1
vote
0answers
46 views
dnode ruby hangs
I have a problem with dnode.
I created a node.js server and from ruby I want to call some node function. It works, but the connection hangs. So I placed some console.log to the node.js function to ...
3
votes
0answers
188 views
Install DNode on Windows
I am trying to install DNode on Windows 7 64bit, Microsoft Visual C++ 2010 Express and Python 2.7.3 are installed.
I get the following output from npm:
C:\Program Files\nodejs>npm install dnode
...
0
votes
0answers
48 views
DNode implementation in C?
I need to communicate between JavaScript (Node.js) and C. There are already implementations of the protocol in different languages. But I miss one in C.
Is there an implementation of the DNode ...
1
vote
2answers
605 views
npm install dnode fail with node0.8.1 & win7
had try python 2.7.3 & 3.x, both fail.
error2 with py2.7
E:\Workspace\Code\SmartDoor>python
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit (AMD64)] on win
32
Type "help", ...
0
votes
1answer
322 views
Is it possible to create peer-to-peer connections in different network?
I want to create peer-to-peer connections between 2 nodejs client.
using websocket (dnode)
here is the limit:
nodejs client run at 2 pc which is in different network.
they don't have static ip ...
0
votes
0answers
144 views
How to reverse-proxy dnode socket
I need to connect my dnode client to a server running on port 9999.
As the client is behind a firewall, I need to connect it through port 80 and then reserve-proxy this socket so it targets port 9999 ...
1
vote
1answer
108 views
dnode memory leak?
I want to test the performance of dnode, so I try to send a string from client to server, and server call back client with the same string.
The memory usage of server always increasing, the server ...
1
vote
1answer
205 views
Socket hang in dnode
I have developed a client/server bi-directional communication using dnode.
When a client connects to the server, I keep the connection so the server can use this connection to invoke a method on the ...
2
votes
1answer
523 views
Send message from server to client with dnode
A couple of month ago I discovered nowjs and dnode and finally used nowjs (and https://github.com/Flotype/nowclient) for client / server bidirectional communication.
nowclient enables nowjs ...
2
votes
1answer
130 views
What's the most scale-friendly way to allow one node process to communicate between its own modules?
I've built a system whereby multiple modules are loaded into an "app.js" file. Each module has a route and schema attached. There will be times when a module will need to request data from another ...
0
votes
2answers
224 views
Return the last element in the node list
I currently have the following Node List: {3,2,5,6,2,5}
When I invoke: trailer.getPrev() the output is 2. The problem is I want to return 5, how do I do this.
I have tried: return trailer; but then ...
4
votes
1answer
225 views
Does dnode have authentication middleware?
I'm building an express app that uses everyauth and would like to use dnode. I want to be able to use the req.loggedIn boolean set up, but for dnode rpc calls.
Can this be done by having dnode ...
2
votes
1answer
176 views
Syncing dnode and Express authentication - How?
I'm building a web app with Express and dnode and I'm trying to synchronize authentication between the two.
I found the following example, but the 'sessionCheck' event doesn't appear to be firing on ...
2
votes
2answers
303 views
Serving client-side DNode library - “cannot find module dnode/web”
I'm trying to build a simple bidirectional DNode app using the DNode tutorial here. However I'm not sure how to serve the client-side dnode js.
The example includes the following code:
var js = ...
2
votes
2answers
226 views
How do i make multiple Dnode connections?
I'm doing an autocomplete input form and i want to send what my user types to a remote database for suggestions.
I use dnode for it now, and i do not want to do a new remote connect each time my user ...
1
vote
1answer
2k views
TCP socket + socket.io bidirectional (JSON-)RPC: dnode?
I'm looking for a way to implement a bidirectional RPC in node.js (means that both client and server provide remote-callable procedures, preferable like json-rpc). It should be usable on top of ...
42
votes
3answers
5k views