Update README.md

This commit is contained in:
Dimitri De Jonghe 2017-05-03 00:18:15 +02:00 committed by GitHub
parent 9795df4e14
commit 2f7a4906b1
1 changed files with 5 additions and 4 deletions

View File

@ -26,19 +26,20 @@ of which I expect you'll know quite well ([otherwise, go check out js-reactor](h
```bash
# install from npm
npm install js-bigchaindb-driver
# Install from GitHub - Depending on your GitHub login credentials (`ssh` or `https`)
# Install from GitHub - ssh
npm install git+ssh://github.com/bigchaindb/js-bigchaindb-driver.git
# Install from GitHub - https
npm install git+https://github.com/bigchaindb/js-bigchaindb-driver.git
```
### Import / ES6
```javascript
// ES6
// ES6 Browser
import * as driver from 'js-bigchaindb-driver';
// ES<<6
// ES<<6 Browser
let driver = require('js-bigchaindb-driver');
// CommonJS / node
// ES<<6 CommonJS / node
let driver = require('js-bigchaindb-driver/dist/node');
```