npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@uam/vuejs-cache

v0.3.1

Published

Vuejs cache plugin

Downloads

85

Readme

Vuejs cache plugin

Installation

via npm

npm install @uam/vuejs-cache

via yarn

yarn add @uam/vuejs-cache

Requirements

This package need following packages installed in your app

  • pouchdb-browser@^7.0.0
  • vue@^2.5.16
  • vuex@^3.0.1

Api requirements

Your api needs to attach a custom header for db version, the cache data is updated based on this version.

Custom header have json key and value pair. key is based on cacheKey and value is db version.

{"cacheKey1": 898999, "cacheKey2": 48383}

Usage

Install Vuejs cache plugin as follows:

# main.js

import cachePlugin from '@uam/vuejs-cache'

Vue.use(cachePlugin, {options})

Options

| Option | Description | Type | Required | Default | |:-----------------------|:---------------------------------------------------------|:----------------|:---------|:--------------------| | store | Main store to which the cache module is attached to | Object | true | | | axios | The instance of axios used by app | Object | true | | | userId | Currently logged in user's id | Integer/String | false | null | | databaseName | Name of the cache db | String | false | _uam_vuejs_cache | | storeModuleName | store module name | String | false | uam_cache | | dbVersionsHeaderKey | Custom response header key for db version | String | true | | | cacheConfigs | array value to handle route, db header key, name | array | true | | | ignoreRoutes | array of route to ignore for cache fetch | array | false | [] |

cacheConfigs example


[{cacheKey: 'cacheKey_name', cacheRoute: 'cache_route', isCacheRoutePublic: false}]

Once you have registered the plugin. It attaches a uam_cache or the {storeModuleName} module to the store, The cached data received from the cacheRoute can be accessed as . All store and getters created based on cacheKey

using store

assuming you have not updated the storeModuleName


store.uam_cache.<cacheKey>

Or


store.uam_cache[<cacheKey>]

use getters

# File.vue

// ..
// ..
this.$store.getters['uam_cache/cacheKey_name']

Changing user id

The store has a action to change the user id. Most probably after a login you need to change the user id for the cache

// ..
// ..

this.$store.dispatch('uam_cache/updateCachedUserId', id)

Displaying message to users when updating cache

The cache module has a getter updatingCache that is true when the data is being fetched from the server.

you can use the getter to add visual clues about ongoing update.

Resetting cache

The store has a action reset the cache

// ..
// ..

this.$store.dispatch('uam_cache/reset')

Making sure you app is mounted after the cache is available

// main.js

// ..
// ..

Vue._cacheInitialized
  .then(() => {
    new Vue({
      el: '#app',
      store
    })
  })