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

vite-auto-pinia

v0.1.2

Published

Automatically generates the pinia file and the entry configuration.

Downloads

85

Readme

vite-auto-pinia

vite-auto-pinia 是一个专为 Vite 构建工具设计的插件,它可以自动为你生成 Pinia 文件,同时支持热更新入口配置。轻松地管理你的 Vue3 状态管理,并在开发过程中提高效率。通过 vite-auto-pinia,你可以快速创建和维护 Pinia 状态管理,同时享受到持续的维护和支持。上手容易,功能强大。让你的 Vite 项目更加流畅和高效。

English

功能特点

  • 自动监听 store 文件夹,无需手动管理状态文件。
  • 智能模板生成,创建新的状态文件时,它会智能生成符合 Pinia 规范的模板文件,让你更轻松地开始状态管理。
  • 你可以根据项目需求自定义模板,使状态文件满足你的特定需求。完全支持自定义。

智能模板

智能模板

使用效果

非使用 unplugin-auto-import用户需要 加入import {$useStore} from '@/store' 使用效果

安装

您可以使用 npm 或 yarn 安装 vite-auto-pinia 插件:

npm install vite-auto-pinia -D
# 或
yarn add vite-auto-pinia --dev

使用方法

要在您的 Vite 项目中使用 vite-auto-pinia 插件,请按照以下步骤操作:

配置插件 vite.config.ts

import { defineConfig } from 'vite';
import AutoPinia from 'vite-auto-pinia';

export default defineConfig({
  // ... 其他 Vite 配置选项
  plugins: [
    // 默认监听store文件夹
    AutoPinia(),
  ],
});

使用方法

  • 官方写法
    <script setup lang="ts">
      //延续响应式
      import { storeToRefs } from 'pinia';
      //store 库
      import user from '@/store/user'
      const { name } = storeToRefs(user())
    </script>
  • 插件写法
    <script setup lang="ts">
      //入口文件 可以通过 unplugin-auto-import 插件简化
      import {$useStore} from '@/store'
      //根据需求调用指定pinia文件
      const { name,onMK } = $useStore('user')
    </script>

这个插件不仅让状态管理变得更容易,还能提高开发速度和可维护性。无需手动干预,vite-auto-pinia 会在后台为你处理状态管理,让你专注于构建出色的 Vue 3 应用。快速、智能、高度可定制化,它将成为你的项目开发中不可或缺的助手。

配置选项

| 名称 | 类型 | 状态 | 默认值 | 描述 | | ------- | --------- | ------ | ------ | --------------------- | | watcher | boolean | 非必填 | true | 默认监听store文件夹 |

模板Ejs说明

| 名称 | 描述 | | -------------------- | ------------------------------- | | name | 占位符,默认文件名 | | template.pinia.ejs | _vap_template文件夹下默认模板 |

其他插件

| 名称 | 描述 | | ---------------------------------------------------------------------- | ------------------------------------------------------------------------ | | vite-auto-template | 为 Vite 开发者设计的插件,它自动生成模板,提高开发效率并确保项目一致性。

相关文献

受够了手动storeToRefs?来试试这个vite插件吧