UNPKG

flocore-lib

Version:

A pure and powerful JavaScript Florincoin library.

67 lines (50 loc) 1.84 kB
# Browser Builds Flocore and most official submodules work in the browser, thanks to [browserify](http://browserify.org/) (some modules are not fully compatible with web browsers). The easiest and recommended way to use them, is via [Bower](http://bower.io/), a browser package manager, and get the release bundles. For example, when building an app that uses `flocore` and `flocore-mnemonic`, you do: ```sh bower install flocore-lib bower install flocore-mnemonic ``` You can also use a `bower.json` file to store the dependencies of your project: ```json { "name": "Your app name", "version": "0.0.1", "license": "MIT", "dependencies": { "flocore-lib": "^0.13.7", "flocore-mnemonic": "^1.0.1" } } ``` and run `bower install` to install the dependencies. After this, you can include the bundled release versions in your HTML file: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <script src="bower_components/flocore/flocore-lib.min.js"></script> <script src="bower_components/flocore-mnemonic/flocore-mnemonic.min.js"></script> </head> <body> <script type="text/javascript"> var flocore = require('flocore-lib'); var Mnemonic = require('flocore-mnemonic'); // etc... </script> </body> </html> ``` ## Building Custom Bundles If you want to use a specific version of a module, instead of a release version (not recommended), you must run browserify yourself. You can get a minified browser bundle by running the following on the project root folder. ```sh browserify --require ./index.js:flocore-lib | uglifyjs > flocore-lib.min.js ``` ```sh browserify --require ./index.js:flocore-mnemonic --external flocore-lib | uglifyjs > flocore-mnemonic.min.js ``` In many of the modules you can also run the command to build a browser bundle: ```sh gulp browser ```