0.5.8 • Published 4 years ago

@simbachain/libsimba-js v0.5.8

Weekly downloads
25
License
MIT
Repository
github
Last release
4 years ago

libsimba-js is a library simplifying the use of SIMBAChain APIs. We aim to abstract away the various blockchain concepts, reducing the necessary time needed to get to working code.

🏠 Homepage

📝 Documentation

Install

npm install @simbachain/libsimba-js

Usage

  • ES2105 module import
import * as libsimba from '@simbachain/libsimba-js';
libsimba.getSimbaInstance(...);
  • CommonJS module require
const libsimba  = require('@simbachain/libsimba-js');
libsimba.getSimbaInstance(...);
  • AMD module require
require(['@simbachain/libsimba-js'], function (libsimba) {
    libsimba.getSimbaInstance(...);
});
  • <script> tag import
<!doctype html>
<html>
  ...
  <script src="./dist/libsimba.js"></script>
  <script>
    // ...
    // Global variable
    libsimba.getSimbaInstance(...);
    // Property in the window object
    window.libsimba.getSimbaInstance(...);
    // ...
  </script>
</html>

Examples

See here

Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page.

License

Copyright © 2019 SIMBAChain Inc. This project is MIT licensed.

0.5.8

4 years ago

0.5.7

4 years ago

0.5.6

4 years ago

0.5.5

4 years ago

0.5.3

4 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.21

5 years ago

0.3.20

5 years ago

0.3.19

5 years ago

0.3.18

5 years ago

0.3.17

5 years ago

0.3.16

5 years ago

0.3.15

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.6

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.2.1

5 years ago

0.1.1

5 years ago