
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
pinia-plugin-capacitor-persist
Advanced tools
A Vue 3 Pinia plugin which persists store content using the CapacitorJS Preferences store.
Pinia plugin that syncs with Capacitor's Preferences plugin's storage.
npm i pinia-plugin-capacitor-persist
First, install the plugin as part of your Pinia initialisation
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import { piniaCapacitorPersist } from 'pinia-plugin-capacitor-persist';
import App from './App.vue';
const pinia = createPinia();
pinia.use(piniaCapacitorPersist);
createApp(App)
.use(pinia)
.mount('#app');
Then you can enable persist as part of your store declarations:
import { defineStore } from 'pinia';
export const useUserStore = defineStore('user', {
state() {
return {
name: '',
address: '',
address_2: '',
city: '',
country: '',
};
},
persist: {
enabled: true,
// See below for additional options that go here
},
});
Option | Type | Example | Description |
---|---|---|---|
include | Array | ['address'] | Only persist these properties |
exclude | Array | ['name'] | Don't persist these properties |
onRestored | Function | (store) => { // do stuff } | Callback function for after restoration |
Because CapacitorJS uses async functions to read/write its storage, there may be times when you need to await your store being hydrated from local storage before doing an action.
Fortunately, there's a property, restored
, that's added to each of your persist enabled stores that can be awaited.
import { createRouter, createWebHashHistory } from "vue-router";
import routes from "@/router/routes";
import { useUserStore } from "@/stores/user";
import { axiosInstance } from "@/plugins/axios";
const router = createRouter({
history: createWebHashHistory(),
routes,
});
router.beforeEach(async () => {
const userStore = useUserStore();
await userStore.restored;
axiosInstance.defaults.headers.common['Authorization'] = `Bearer ${userStore.token}`;
})
export default router;
FAQs
A Vue 3 Pinia plugin which persists store content using the CapacitorJS Preferences store.
The npm package pinia-plugin-capacitor-persist receives a total of 190 weekly downloads. As such, pinia-plugin-capacitor-persist popularity was classified as not popular.
We found that pinia-plugin-capacitor-persist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.