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

@rdeam/pinia-plugin-uni-persist-next

v1.1.0

Published

A Pinia persistence plugin designed for UniApp storage.

Downloads

215

Readme

@rdeam/pinia-plugin-uni-persist-next

专为 UniApp 打造的 Pinia 持久化插件。

Features

  • Uses UniApp storage APIs with synchronous restore and async writes by default.
  • Supports per-store persistence strategies and path filtering.
  • Round-trips Date and BigInt values; drops circular references safely on restore.
  • Skips undefined fields instead of persisting null, keeping initial state intact.
  • Warns when a single key exceeds 1MB (the WeChat mini-program per-key limit).
  • Provides TypeScript types for Pinia persist options.

Install

pnpm add @rdeam/pinia-plugin-uni-persist-next

Usage

import { createPinia } from 'pinia';
import { createUniPersistPlugin } from '@rdeam/pinia-plugin-uni-persist-next';

const pinia = createPinia();

pinia.use(
  createUniPersistPlugin({
    keyPrefix: 'app_storage_',
  }),
);
import { defineStore } from 'pinia';

export const useUserStore = defineStore('user', {
  state: () => ({
    token: '',
    userInfo: null,
  }),
  persist: {
    enabled: true,
    strategies: [
      {
        key: 'user',
        paths: ['token'],
      },
    ],
  },
});

Options

| Option | Type | Default | Description | | --------------- | ------------------- | ---------------------- | ---------------------------------------- | | enabled | boolean | false | Enable persistence for the store. | | async | boolean | true | Use async storage writes by default. | | strategies | PersistStrategy[] | [{ key: store.$id }] | Storage strategies. | | beforeRestore | (ctx) => void | undefined | Hook before persisted state is restored. | | afterRestore | (ctx) => void | undefined | Hook after persisted state is restored. |

Utilities

import { clearAll, clearStore } from '@rdeam/pinia-plugin-uni-persist-next';

// 删除单个 key(需传入含 keyPrefix 的完整 key)
clearStore('app_storage_user');

// 只清空指定前缀下的持久化数据(推荐,与插件 keyPrefix 保持一致)
clearAll('app_storage_');

// 不传前缀时清空整个 uni storage(包括非本插件写入的数据,慎用)
clearAll();

注意:业务 state 中请勿使用 __piniaPersistDate / __piniaPersistBigInt 字段名, 它们是插件还原 Date / BigInt 的保留标记。

License

MIT