Skip to content

Npm 徽章

768字约3分钟

2024-07-26

概述

Npm 徽章组件 用于显示 npm 包信息,并提供相关的链接。

徽章由 https://shields.io 提供支持。

使用

使用该组件需要你手动导入 NpmBadgeNpmBadgeGroup 组件:

<!-- 在 markdown 中导入 -->
<script setup>
import NpmBadge from 'vuepress-theme-plume/features/NpmBadge.vue'
import NpmBadgeGroup from 'vuepress-theme-plume/features/NpmBadgeGroup.vue'
</script>

<!-- 导入后,即可在 markdown 中使用 -->
<NpmBadge name="vuepress-theme-plume" type="dm" />

<!-- 并排显示多个 npm badge -->
<NpmBadgeGroup name="vuepress-theme-plume" items="version,dm" />
npm downloads

npm versionnpm downloads

<NpmBadge />

单个 npm badge

Props

名称类型必填默认值说明
namestring''npm 包名,为空则从 repo 中获取
repostringname 为空时必填''包 github 仓库地址, 格式为 owner/repo
typeNpmBadgeType-徽章类型
themeNpmBadgeTheme'flat'徽章主题
labelstring''徽章标签
colorstring'#32A9C3'徽章颜色
labelColorstring'#1B3C4A'徽章标签颜色
branchstring'main'仓库分支
dirstring''包所在仓库目录,适用于 monorepo 项目

Types

type NpmBadgeType =
  // github
  | 'source' // github source
  | 'stars' // github stars
  | 'forks' // github forks
  | 'license' // github license
  // npm
  | 'version' // npm version
  | 'dt' // alias d18m
  | 'd18m' // npm downloads last 18 months
  | 'dw' // npm downloads weekly
  | 'dm' // npm downloads monthly
  | 'dy' // npm downloads yearly

type NpmBadgeTheme = 'flat' | 'flat-square' | 'plastic' | 'for-the-badge' | 'social'

示例

  • <NpmBadge repo="pengzhanbo/vuepress-theme-plume" type="source" /> - github source
  • <NpmBadge repo="pengzhanbo/vuepress-theme-plume" type="stars" /> - github stars
  • <NpmBadge repo="pengzhanbo/vuepress-theme-plume" type="forks" /> - github forks
  • <NpmBadge repo="pengzhanbo/vuepress-theme-plume" type="license" /> - license
  • <NpmBadge name="vuepress-theme-plume" type="version" /> - npm version
  • <NpmBadge name="vuepress-theme-plume" type="dt" /> - npm downloads
  • <NpmBadge name="vuepress-theme-plume" type="d18m" /> - npm downloads
  • <NpmBadge name="vuepress-theme-plume" type="dy" /> - npm downloads
  • <NpmBadge name="vuepress-theme-plume" type="dm" /> - npm downloads
  • <NpmBadge name="vuepress-theme-plume" type="dw" /> - npm downloads

<NpmBadgeGroup />

组合多个 npm badge

Props

名称类型必填默认值说明
namestring''npm 包名,为空则从 repo 中获取
repostringname 为空时必填''包 github 仓库地址, 格式为 owner/repo
itemsstring | NpmBadgeType[]-徽章类型列表, 传入 string 时用 ','分隔,会自动转换为 NpmBadgeType[]
themeNpmBadgeTheme''徽章主题
colorstring''徽章颜色
labelColorstring''徽章标签颜色
branchstring''仓库分支
dirstring''包所在仓库目录,适用于 monorepo 项目

Slots

<NpmBadgeGroup /> 支持传入 多个 <NpmBadge /> 组件。

<NpmBadgeGroup /> 声明的 Props 将被注入到 <NpmBadge /> 组件中。通过这种方式来实现和简化徽章组合。

示例

输入:

<NpmBadgeGroup
  repo="pengzhanbo/vuepress-theme-plume"
  items="stars,version,dm,source"
/>

输出:

github starsnpm versionnpm downloadsgithub source

使用 <slot /> 灵活定义徽章组合:

输入:

<NpmBadgeGroup repo="pengzhanbo/vuepress-theme-plume">
  <NpmBadge type="stars" />
  <NpmBadge type="version" label="npm" />
  <NpmBadge type="dm" />
  <NpmBadge type="source" />
</NpmBadgeGroup>

输出:

github starsnpm versionnpm downloadsgithub source