92d6a1f91c
* Upgrade deps and fix style issues (Raymond Feng) * Provide scriptExtensions option (Supasate Choochaisri) * Update paid support URL (Siddhi Pai) * Refactor for modular and pluggable design (Raymond Feng) * Add Node v7 to Travis CI platforms (Miroslav Bajtoš) * Drop support for Node v0.10 and v0.12 (Miroslav Bajtoš) * readme: update URL to new doc site (David Cheung) * Update ja translation file (Candy) * Update header-browser.md (Sequoia McDowell) * Update translation files - round#2 (Candy) * Normalize line endings to support both LF and CRLF (Miroslav Bajtoš) * Remove "defaultForType" from datasource config (Miroslav Bajtoš) * Update deps to loopback 3.0.0 RC (Miroslav Bajtoš) * globalization: add translated strings (gunjpan) * Start development of 3.0 (Miroslav Bajtoš) |
||
---|---|---|
.github | ||
docs | ||
intl | ||
lib | ||
test | ||
.eslintignore | ||
.eslintrc | ||
.gitignore | ||
.travis.yml | ||
3.0-RELEASE-NOTES.md | ||
CHANGES.md | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
browser.js | ||
docs.json | ||
index.js | ||
package.json |
README.md
LoopBack Boot
A convention-based bootstrapper for LoopBack applications.
For full documentation, see the official StrongLoop documentation: Defining boot scripts and Creating a LoopBack application.
Overview
The loopback-boot module initializes (bootstraps) a LoopBack application. Specifically, it:
- Configures data-sources.
- Defines custom models
- Configures models and attaches models to data-sources.
- Configures application settings
- Runs additional boot scripts, so you can put custom setup code in multiple small files instead of in the main application file.
For more information, see Defining boot scripts.
Version notes
The version range 1.x
is backwards compatible with app.boot
provided
by LoopBack 1.x versions and the project layout scaffolded by slc lb project
up to slc version 2.5.
The version range 2.x
supports the new project layout as scaffolded by
yo loopback
.
This document describes the configuration conventions of the 2.x
versions.
Installation
npm install loopback-boot
Usage
var loopback = require('loopback');
var boot = require('loopback-boot');
var app = loopback();
boot(app, __dirname);
app.use(loopback.rest());
app.listen();
See API docs for complete API reference.
License
This module is provided under dual MIT/StrongLoop license. See LICENSE for details.