0.0.0 • Published 5 years ago

choo-shortcache v0.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

choo-shortcache

shortcut access to state.cache() anywhere in your app

Example

app.use(require('choo-shortcache'))

Elsewhere in your app...

var { cache } = require('choo-shortcache')
var MyComponent = require('./mycomponent')

module.exports = function (state, emit) {
  return html`
    ${cache(MyComponent, 'MyComponent').render()}
  `
}

What is this for?

(nano)component instances are managed in choo using state.cache(). This pattern works well, but it requires you pass state everywhere, potentially very deep into your app, just to create components. This plugin allows you to create components at any depth level in your app without directly passing the entire state all the way down. Under the hood it just creates a reference to state.cache() that you can import with:

var { cache } = require('choo-shortcache')