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

@zq-comps/im

v1.0.13

Published

基于Vue 3.5的业务组件库

Readme

Beem Biz UI

基于 Vue 3.5 的业务组件库,支持 TypeScript。

安装

# 使用pnpm
pnpm add beem-biz-ui

# 使用npm
npm install beem-biz-ui

使用

全局引入

import { createApp } from 'vue';
import BeemBizUI from 'beem-biz-ui';
import App from './App.vue';

const app = createApp(App);
app.use(BeemBizUI);
app.mount('#app');

按需引入

import { createApp } from 'vue';
import { Button } from 'beem-biz-ui';
import App from './App.vue';

const app = createApp(App);
app.component('BizButton', Button);
app.mount('#app');

开发

# 安装依赖
pnpm install

# 启动Storybook开发环境
pnpm storybook

# 类型检查
pnpm type-check

# 代码格式化
pnpm format

# 代码检查
pnpm lint

# 样式检查
pnpm stylelint

# 构建组件库
pnpm build

# 构建Storybook文档站
pnpm build-storybook

代码规范

本项目使用以下工具来保证代码质量和一致性:

  • ESLint: 代码检查工具
  • Prettier: 代码格式化工具
  • Stylelint: 样式检查工具
  • EditorConfig: 编辑器配置
  • Husky + lint-staged: Git提交前代码检查
  • CommitLint: Git提交信息规范检查

提交代码时请遵循以下commit规范:

<type>(<scope>): <subject>

<body>

<footer>

可用的type类型:

  • feat: 新功能
  • fix: 修复
  • docs: 文档变更
  • style: 代码格式(不影响代码运行的变动)
  • refactor: 重构(既不是增加feature,也不是修复bug)
  • perf: 性能优化
  • test: 增加测试
  • chore: 构建过程或辅助工具的变动
  • revert: 回退
  • build: 打包
  • ci: CI配置

TypeScript 支持

组件库完全使用 TypeScript 开发,提供完整的类型定义文件,支持 IDE 代码提示和类型检查。

VSCode推荐扩展

为了获得最佳的开发体验,建议安装以下VSCode扩展:

  • Vue Language Features (Volar)
  • ESLint
  • Prettier
  • EditorConfig
  • StyleLint

可用组件

  • Button 按钮组件