File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,14 @@ var foobar = {
66
66
module .exports = foobar
67
67
```
68
68
69
- Then, using browserify, compile ` foobar.js ` for use in the browser:
69
+ Each of these included packages are seperate to ` bitcoinjs-lib ` , and must be installed separately.
70
+ They are however used in the bitcoinjs-lib public API.
70
71
71
- $ browserify foobar.js -s foobar > dist/foobar.js
72
+ Using browserify, compile ` foobar.js ` for use in the browser:
72
73
73
- You will then be able to load ` dist/foobar.js ` into your browser, with each of the dependencies above accessible from the global ` foobar ` object.
74
+ $ browserify foobar.js -s foobar > foobar.js
75
+
76
+ You will then be able to load ` foobar.js ` into your browser, with each of the dependencies above accessible from the global ` foobar ` object.
74
77
75
78
** NOTE** : See our package.json for the currently supported version of browserify used by this repository.
76
79
You can’t perform that action at this time.
0 commit comments