xs-js-multibase

0.1.12 • Public • Published

xS-js-multibase

npm npm npm

Build Status codecov Nodejs npm

xStorage implementation of ipfs js-multibase xS-js-multibase specification

维护者 Paul Zhang Chunhv Liu

目录

1. 安装

1.1 In Node.js through npm

> npm install --save xs-js-multibase

1.2 Browser: Browserify, Webpack, other bundlers

The code published to npm that gets loaded on require is in fact an ES5 transpiled version with the right shims added. This means that you can require it and use with your favourite bundler without having to adjust asset management process.

const multibase = require('multibase')

1.3 In the Browser through <script> tag

Loading this module through a script tag will make the Multibase obj available in the global namespace.

<script src="https://unpkg.com/xs-js-multibase/dist/index.min.js"></script>
<!-- OR -->
<script src="https://unpkg.com/xs-js-multibase/dist/index.js"></script>

2. 使用

2.1 Example

const multibase = require('multibase')
 
const encodedBuf = multibase.encode('base58btc', new Buffer('hey, how is it going'))
 
const decodedBuf = multibase.decode(encodedBuf)
console.log(decodedBuf.toString())
// hey, how it going

2.2 API

See the doc. (To be continue)

3. Contribute

Contributions welcome. Please check out the issues.

4. 致谢

@multiformats multibase

5. 资助我们

Cryptocurrency is welcomed.

ETH: 0xCd0e5cE4a29Fd6441b95FA857753f68D09339628

6. License

MIT © 2016 Protocol Labs Inc.

Package Sidebar

Install

npm i xs-js-multibase

Weekly Downloads

12

Version

0.1.12

License

MIT

Unpacked Size

228 kB

Total Files

18

Last publish

Collaborators

  • paulplayer