Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wankdanker/automesh-dnode

dnode plugin for automesh
https://github.com/wankdanker/automesh-dnode

Last synced: 14 days ago
JSON representation

dnode plugin for automesh

Awesome Lists containing this project

README

        

automesh-dnode
--------------

This is a plugin for automesh which provides support for a remote dnode server. If a remote service
is providing a dnode type endpoint in an automesh network, all that needs to be done to access the remote
dnode is something like:

```js
var automesh = require('automesh');
var mesh = automesh();

mesh.require('some-dnode-service', function (err, remote) {
//now you can call functions on `remote`
remote.echo('hello', function (err, data) {
console.log(data);
});
});

```

license
-------
MIT