From 642315eabccacd34a71fa21ecf5ec48d59ec7693 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Sun, 8 Feb 2015 16:11:28 +1100 Subject: [PATCH] README: remove dist/ and clarify installation of other packages --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 21ae379..c957a58 100644 --- a/README.md +++ b/README.md @@ -66,11 +66,14 @@ var foobar = { module.exports = foobar ``` -Then, using browserify, compile `foobar.js` for use in the browser: +Each of these included packages are seperate to `bitcoinjs-lib`, and must be installed separately. +They are however used in the bitcoinjs-lib public API. - $ browserify foobar.js -s foobar > dist/foobar.js +Using browserify, compile `foobar.js` for use in the browser: -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. + $ browserify foobar.js -s foobar > foobar.js + +You will then be able to load `foobar.js` into your browser, with each of the dependencies above accessible from the global `foobar` object. **NOTE**: See our package.json for the currently supported version of browserify used by this repository.