1.1.0 • Published 5 years ago
bfg-js v1.1.0
Install
npm install bfg-js
// or
yarn add bfg-jsUsage
Set to you resources/js/app.js a next code:
require('bfg-js');
app.provider({
register () {
console.log(`Run application...`);
}
})
app.provider({
boot () {
console.log(`Booted application!`);
}
})
app.boot();