This repo is stub and isn't doing anything interesting at the moment.
Promise wrapper for telehash-js. Make all public telehash methods which normally require node-style callback return an ES6-compatible promise instead. Both telehash
and denodeify
are peer dependencies.
var th = require("telehash-promise");
// denodeify is also available as th.denodeify
th.generate()
.then(function(endpoint) {
// Process endpoint.
}).catch(function(err) {
// Process errors.
});
th.mesh({id})
.then(function(mesh) {
// Process mesh.
}, function(err) {
// Process error.
});
telehash-promise - telehash promise wrapper
Written in 2014 by Kagami Hiiragi [email protected]
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/.