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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@angxuejian/create-vue-kit

v1.0.9

Published

Scaffold a lightweight Vue 3 monorepo project powered by Vite, TypeScript, ESLint, and Prettier.

Readme

create-vue-kit

Scaffold a lightweight Vue 3 monorepo project powered by Vite, TypeScript, ESLint, Prettier, and VitePress documentation with GitHub Actions deployment.

Use

npm create @angxuejian/vue-kit@latest

or

npx @angxuejian/create-vue-kit

项目结构

生成的项目使用 pnpm workspace 构建 monorepo 架构,目录结构如下:

template/
├── packages/                # 核心代码包(组件库/工具库)
│   ├── index.ts            # 主入口文件
│   ├── package.json        # 包配置文件
│   └── tsconfig.json       # TypeScript 配置
│
├── play/                   # 开发调试环境(基于 Vite + Vue3)
│   ├── public/             # 静态资源目录
│   │   └── favicon.ico     # 网站图标
│   ├── src/                # 源代码目录
│   │   ├── App.vue         # Vue 根组件
│   │   └── main.ts         # 应用入口文件
│   ├── index.html          # HTML 模板文件
│   ├── package.json        # 包配置文件
│   ├── tsconfig.json       # TypeScript 配置
│   └── vite.config.ts      # Vite 开发服务器配置
│
├── docs/                   # 文档站点(基于 VitePress)
│   ├── public/             # 静态资源目录
│   │   └── images/         # 图片资源目录
│   │       └── logo.svg    # Logo 图标
│   ├── getting-started.md  # 快速开始文档
│   ├── guide.md            # 使用指南文档
│   ├── index.md            # 首页文档
│   └── package.json        # 包配置文件
│
├── eslint.config.ts        # ESLint 代码规范配置
├── tsconfig.json           # 根 TypeScript 配置
├── pnpm-workspace.yaml     # pnpm 工作空间配置(定义 monorepo 子包)
├── package.json            # 根包配置文件
└── .gitignore              # Git 忽略文件配置

目录说明

  • packages/: 存放核心代码,可以是组件库、工具库等,是整个项目的核心业务逻辑所在
  • play/: 开发沙盒环境,用于在开发过程中实时预览和调试 packages 中的代码
  • docs/: 使用 VitePress 构建的文档站点,用于编写项目文档和使用指南