An open API service indexing awesome lists of open source software.

https://github.com/jongacnik/choo-shortcache

shortcut access to state.cache anywhere in your app
https://github.com/jongacnik/choo-shortcache

Last synced: about 1 year ago
JSON representation

shortcut access to state.cache anywhere in your app

Awesome Lists containing this project

README

          

# choo-shortcache

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

## Example

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

Elsewhere in your app...

```js
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:

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