From 75632372dcb522c2842374b1759b5652b4647570 Mon Sep 17 00:00:00 2001 From: Manan Patel Date: Tue, 14 Jul 2020 20:56:43 +0530 Subject: [PATCH] added missing section Installation section was missing how to install library --- docs/README_simple_flow.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/README_simple_flow.md b/docs/README_simple_flow.md index e1affb3a..8b5c9bb4 100644 --- a/docs/README_simple_flow.md +++ b/docs/README_simple_flow.md @@ -10,6 +10,12 @@ `ocean-lib-js` is part of the [Ocean Protocol](www.oceanprotocol.com) toolset. # Installation + +``` +npm i --save @oceanprotocol/lib +``` +# Usage + ``` // ES6 import { Ocean, Logger } from '@oceanprotocol/lib' @@ -91,4 +97,4 @@ const config = new Config() const ocean = await Ocean.getInstance() await ocean.assets.download(tokenAddress, blob, transactionId, bob) -``` \ No newline at end of file +```