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

unplugin-ha-code-auth

v0.0.2

Published

生成页面按钮权限列表

Downloads

3

Readme

unplugin-ha-code-auth

NPM version

感谢 unplugin.

使用场景

遍历当前vue页面中有哪些权限配置.

思路

遍历每个文件中的对象是否包含了codelabel两个属性,那么就会认为是一个权限配置,将收集到当前文件中,然后再找到当前文件被哪些文件所依赖,只到找到最顶层没有被依赖的页面,那么就将这些权限配置归属到这个没有被依赖的页面中。

安装

npm i unplugin-ha-code-auth
// vite.config.ts
import Starter from 'unplugin-ha-code-auth/vite'

export default defineConfig({
  plugins: [
    Starter({ /* options */ }),
  ],
})

Example: playground/

// rollup.config.js
import Starter from 'unplugin-ha-code-auth/rollup'

export default {
  plugins: [
    Starter({ /* options */ }),
  ],
}

// webpack.config.js
module.exports = {
  /* ... */
  plugins: [
    require('unplugin-ha-code-auth/webpack')({ /* options */ })
  ]
}

// nuxt.config.js
export default defineNuxtConfig({
  modules: [
    ['unplugin-ha-code-auth/nuxt', { /* options */ }],
  ],
})

This module works for both Nuxt 2 and Nuxt Vite

// vue.config.js
module.exports = {
  configureWebpack: {
    plugins: [
      require('unplugin-ha-code-auth/webpack')({ /* options */ }),
    ],
  },
}

// esbuild.config.js
import { build } from 'esbuild'
import Starter from 'unplugin-ha-code-auth/esbuild'

build({
  plugins: [Starter()],
})

配置选项

Options 配置项

插件的主要配置选项,包含以下参数:

| 参数名 | 类型 | 默认值 | 说明 | |--------|------|--------|------| | include | FilterPattern | [/\.[cm]?[jt]sx?$\|\.vue$/] | 需要处理的文件匹配模式 | | exclude | FilterPattern | [/node_modules/] | 需要排除的文件匹配模式 | | enforce | 'pre' | 'post' | undefined | 'pre' | 插件执行时机 | | codeFilePath | string | resolve(cwd(), 'projectCodePermissions.json') | 权限代码配置文件路径 | | aliasConfigs | AliasConfig[] | 见下方说明 | 路径别名配置列表 | | ignoreFiles | string[] | ['node_modules', 'assets'] | 忽略的文件列表 |

AliasConfig 别名配置

用于配置路径别名的选项:

| 参数名 | 类型 | 默认值 | 说明 | |--------|------|--------|------| | prefix | string | '@''~' | 别名前缀符号 | | targetPath | string | resolve(cwd(), 'src') | 别名对应的目标路径 |