viz-js-lib 0.9.31 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,6 +23,24 @@ viz.api.getAccounts(['ned', 'dan'], function(err, response){
23
23
  });
24
24
  </script>
25
25
  ```
26
+ ## Build
27
+
28
+ ```
29
+ apt-get install -y webpack
30
+ apt-get install -y npm
31
+ apt-get install -y git
32
+
33
+ npm install -g n
34
+ n v8.4.0
35
+ PATH="$PATH"
36
+
37
+ git clone https://github.com/VIZ-Blockchain/viz-js-lib.git
38
+ cd viz-js-lib/
39
+
40
+ npm install
41
+ npm run build-browser
42
+ ls dist
43
+ ```
26
44
 
27
45
  ## Server
28
46