mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 01:36:56 +01:00
Merge branch 'master' into feature/styling-functional
This commit is contained in:
commit
749a8df00f
34
README.md
34
README.md
@ -23,39 +23,23 @@ of which I expect you'll know quite well ([otherwise, go check out js-reactor](h
|
|||||||
|
|
||||||
### Install from npm
|
### Install from npm
|
||||||
|
|
||||||
```
|
```bash
|
||||||
|
# install from npm
|
||||||
npm install js-bigchaindb-driver
|
npm install js-bigchaindb-driver
|
||||||
```
|
# Install from GitHub - ssh
|
||||||
|
|
||||||
|
|
||||||
### Install from GitHub
|
|
||||||
|
|
||||||
Depending on your GitHub login credentials
|
|
||||||
|
|
||||||
- ssh
|
|
||||||
```
|
|
||||||
npm install git+ssh://github.com/bigchaindb/js-bigchaindb-driver.git
|
npm install git+ssh://github.com/bigchaindb/js-bigchaindb-driver.git
|
||||||
```
|
# Install from GitHub - https
|
||||||
|
|
||||||
- https
|
|
||||||
|
|
||||||
```
|
|
||||||
npm install git+https://github.com/bigchaindb/js-bigchaindb-driver.git
|
npm install git+https://github.com/bigchaindb/js-bigchaindb-driver.git
|
||||||
```
|
```
|
||||||
|
|
||||||
### Browser / ES6
|
### Import / ES6
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
|
// ES6 Browser
|
||||||
import * as driver from 'js-bigchaindb-driver';
|
import * as driver from 'js-bigchaindb-driver';
|
||||||
```
|
// ES<<6 Browser
|
||||||
|
|
||||||
### Browser / require
|
|
||||||
```javascript
|
|
||||||
let driver = require('js-bigchaindb-driver');
|
let driver = require('js-bigchaindb-driver');
|
||||||
```
|
// ES<<6 CommonJS / node
|
||||||
|
|
||||||
### CommonJS / node
|
|
||||||
```javascript
|
|
||||||
let driver = require('js-bigchaindb-driver/dist/node');
|
let driver = require('js-bigchaindb-driver/dist/node');
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -157,4 +141,4 @@ An example BigchainDB Server-generated keypair (encoded in `base58`):
|
|||||||
- Private: `7Gf5YRch2hYTyeLxqNLgTY63D9K5QH2UQ7LYFeBGuKvo`
|
- Private: `7Gf5YRch2hYTyeLxqNLgTY63D9K5QH2UQ7LYFeBGuKvo`
|
||||||
|
|
||||||
Your package should be able to take in the decoded version of the **private** key and return you the
|
Your package should be able to take in the decoded version of the **private** key and return you the
|
||||||
same **public** key (once you encode that to `base58`).
|
same **public** key (once you encode that to `base58`).
|
Loading…
Reference in New Issue
Block a user