loopback-boot/docs/header-browser.md

16 lines
354 B
Markdown
Raw Normal View History

## Browser API
Use this API in the `app.js` file that you process by browserify and run in the browser.
```js
var loopback = require('loopback');
var boot = require('loopback-boot');
var app = module.exports = loopback();
boot(app);
```
2016-10-05 21:25:52 +00:00
### Browserify Note
Loopback-boot will *not work correctly* with `fullpaths` option set in browserify/watchify.