vuex-strong-cache
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

vuex-strong-cache

Allow stronger cache for Vuex getters.

What is this?

This library allows you to cache the result of function that returned by a getter. In other words, even if you write like the following getter, the final result will be cached as same as a normal getter result.

getters: {
  getTodoById: (state, getters) => (id) => {
    return state.todos.find(todo => todo.id === id)
  }
}

Installation

$ npm install --save vuex-strong-cache
# or 
$ yarn add vuex-strong-cache

Usage

vuex-strong-cache provides a helper function that can enhance getters. You can just wrap your getters by the enhancedGetters helper so that all your getters will ready to have stronger caching.

import { enhancedGetters } from 'vuex-strong-cache'
 
export default {
  state: {
    todos: []
  },
 
  getters: enhancedGetters({
    getTodoById: (state, getters) => (id) => {
      return state.todos.find(todo => todo.id === id)
    }
  }),
 
  // ...
}

License

MIT

Package Sidebar

Install

npm i vuex-strong-cache

Weekly Downloads

3

Version

0.1.1

License

MIT

Last publish

Collaborators

  • ktsn