All Projects → goto-bus-stop → Choo Lazy Route

goto-bus-stop / Choo Lazy Route

Licence: other
lazy load choo routes from split bundles

Programming Languages

javascript
184084 projects - #8 most used programming language

choo-lazy-route

var app = choo()
var splitRequire = require('split-require')
var lazyRoute = require('choo-lazy-route')()

app.use(lazyRoute)
app.route('/lazy-route', lazyRoute(function (cb) {
  splitRequire('./views/lazyView', cb)
}))

API

lazyRoute = require('choo-lazy-route')()

Create an instance of the lazy route manager.

app.use(lazyRoute)

Associate the lazy route manager with an app. The lazyRoute store also configures the app to take advantage of the experimental prefetch feature in bankai, so that server side rendering will include lazy routes.

app.route('/', lazyRoute(function load() {}))

Create a lazy route. The load function can return a Promise or use the callback in its first parameter.

Events

The lazy-route store emits the events listed below.

lazy-route:load(route)

Emitted when a route starts loading. route is a string.

lazy-route:loaded(route, view)

Emitted when a route has loaded successfully. route is a string. view is the view function that was loaded.

todo

  • timeout
  • loading view (show after 700ms or so)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].