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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pinia-plugin-state

v0.0.3

Published

Pinia 持久化插件,支持将状态持久化到本地存储,适用于 Vue 应用。

Readme

pinia-plugin-state

🌟 A simple and easy-to-use Pinia state persistence plugin, supporting multiple storage methods and flexible configuration.

Features

  • Supports localStorage, sessionStorage, and custom storage.
  • Supports persistence by field.
  • Zero-config, ready to use out-of-the-box.

Installation

npm install pinia-plugin-state
# or
yarn add pinia-plugin-state

Quick Start

import { createApp } from 'vue'
import { createPinia } from 'pinia'
import saveState from 'pinia-plugin-state'
import App from './App.vue'
const app = createApp(App)
const pinia = createPinia()
// Add the persistence plugin to the Pinia instance
pinia.use(saveState)
app.use(pinia)
app.mount('#app')

Basic Usage

Enable persistence in your store:

import { defineStore } from 'pinia'
import { ref, reactive } from 'vue'
export const useUserStore = defineStore(
    'user',
    () => {
        const id = ref('')
        const nickName = ref('')
        const token = ref('')
        const user = reactive({
            name: '',
            ip: {
                v4: '',
                v6: ''
            }
        })
        return { id, nickName, token, user }
    },
    {
        // Enable and configure persistence options
        enable: true,
        // Optional: Specify properties to persist, using dot notation for paths
        include: ['id', 'nickName', 'user.ip'],
        // Optional: Specify properties to ignore, using dot notation for paths
        exclude: ['user.ip.v4']
        // Optional: Specify storage method, e.g., localStorage, sessionStorage, etc. Defaults to localStorage.
        // storage: localStorage,
        // Optional: Customize the storage key name. Defaults to storeId.
        // id: 'user',
        // Optional: Customize the storage expiration time, in milliseconds.
        // ttl: 1000
    }
)

Configuration Options

| Option | Type | Description | Required | | --------- | -------- | ------------------------------------------------ | -------- | | enable | Boolean | Whether to enable persistence (default: false) | Yes | | id | String | Storage key name (default: store id) | No | | storage | Storage | Storage method (local/session, etc.) | No | | include | String[] | Fields to persist | No | | exclude | String[] | Fields to ignore | No | | ttl | Number | Storage expiration time (in milliseconds) | No |

Custom Storage

You can implement custom storage by providing getItem, setItem, and removeItem methods.

const storage = {
    getItem: key => {
        /* ... */
    },
    setItem: (key, value) => {
        /* ... */
    },
    removeItem: key => {
        /* ... */
    }
}

Compatibility

  • Compatible with Vue 3.x
  • Depends on Pinia 2.x

License

MIT

Thank you for using! If you encounter any issues, please feel free to open an Issue.