Hide `compile` and `execute` and provide a better API for browserified applications: - `boot.compileToBrowserify(options, bundler)` calls `compile` under the hood and adds all instructions and scripts to the bundler. - `bootBrowserApp(app)` is exported by loopback-boot when the module is loaded in a browser, the function loads the instructions as bundled by `compileToBrowserify`. This new API hides all implementation details from the user and makes it easy to add loopback-boot to any build script. |
||
---|---|---|
docs | ||
lib | ||
test | ||
.gitignore | ||
.jshintignore | ||
.jshintrc | ||
CHANGES.md | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
browser.js | ||
docs.json | ||
index.js | ||
package.json |
README.md
LoopBack Boot
LoopBack Boot is a convention-based bootstrapper for LoopBack applications.
For full documentation, see the official StrongLoop documentation:
Installation
npm install loopback-boot
Usage
TBD