telehash-promise

0.2.1 • Public • Published

telehash-promise Build Status

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

Readme

Keywords

Package Sidebar

Install

npm i telehash-promise

Weekly Downloads

0

Version

0.2.1

License

CC0

Last publish

Collaborators

  • kagami