Skip to content

bitchan/telehash-promise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

telehash-promise Build Status

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.

Usage

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.
  });

License

telehash-promise - telehash promise wrapper

Written in 2014 by Kagami Hiiragi kagami@genshiken.org

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/.