From 2f7a4906b16b750262f5138c4b3697ae3e5febb8 Mon Sep 17 00:00:00 2001 From: Dimitri De Jonghe Date: Wed, 3 May 2017 00:18:15 +0200 Subject: [PATCH] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b89bc96..ebe3c8b 100644 --- a/README.md +++ b/README.md @@ -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'); ```