Git Product home page Git Product logo

btfs-sdk-mini's Introduction

BTFS-mini


A super tiny module for querying an btfsnode, that works in the browser and in Node. Only 2.76 kB compressed!

Install

npm install --save btfs-sdk-mini

Usage

const btfs= require('btfs-sdk-mini');
const btfs= new BTFS({ host: 'xxxx', port: 5001, protocol: 'https' });

BTFS.add('hello world!').then(console.log).catch(console.log);

// result null 'QmTp2hEo8eXRp6wg7jXv1BLCMh5a4F3B7buAUZNZUu772j'

// result null 'hello world!'

BTFS.addJSON({ somevalue: 2, name: 'Nick' }, (err, result) => {
  console.log(err, result);
});

// result null 'QmTp2hEo8eXRp6wg7jXv1BLCMh5a4F3B7buAUZNZUu772j'

Examples

An example of the module in use for the browser, can be found in ./example.

Inside is a single, no configuration required, HTML file using the btfs-sdk-mini module.

Browser Usage

btfs-sdk-mini is completely browserifiable and webpack ready. The main export found in our distributions dist folder is BTFS.

<html>
  <body>
    <script type="text/javascript" src="btfs-mini.min.js">
    <script type="text/javascript">
      var btfs= new BTFS({ provider: 'xxxx', protocol: 'https' });

      // ...
    </script>
  </body>
</html>

API Design

add

Result output BTFSHash String.

const btfs= require('BTFS-mini');
const btfs= new BTFS({ host: 'BTFS.infura.io', port: 5001, protocol: 'https' });

BTFS.add('hello world!', (err, result) => {
  console.log(err, result);
});

// result null 'QmTp2hEo8eXRp6wg7jXv1BLCMh5a4F3B7buAUZNZUu772j'

btfs-sdk-mini's People

Contributors

fdango avatar kevin-yuhh avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

kevin-yuhh fdango

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.