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

create-zhao-vue3

v1.0.5

Published

Scaffold for Vue 3 + Vite + TypeScript projects

Readme

create-zhao-vue3

基于 Vue 3 + Vite + TypeScript 的项目脚手架,内置常用工程化能力,创建时可按需裁剪。

使用

# npm
npm create zhao-vue3@latest my-app

# pnpm
pnpm create zhao-vue3 my-app

# 本地调试
pnpm install
pnpm create my-app

交互选项

| 选项 | 说明 | |------|------| | 作者 / 描述 | 写入 package.json | | 包管理器 | pnpm / npm / yarn / bun | | Vue Router | 路由与示例页面 | | Pinia | 状态管理示例 | | Axios | 请求封装 + API 示例 | | Mock | vite-plugin-mock 本地接口 | | Element Plus | 按需引入 + SCSS 主题变量 | | 自动安装依赖 | 创建完成后执行 install |

跳过交互、使用默认全开配置:

create-zhao-vue3 my-app --default

模板能力

生成项目默认包含:

  • Vite 8 + Vue 3.5 + TypeScript
  • unplugin-auto-import / unplugin-vue-components
  • SVG 图标、@ 路径别名、全局 SCSS 变量
  • ESLint + Oxlint + Oxfmt
  • Vitest 单元测试示例
  • Vue DevTools 插件

开发本仓库

pnpm install
# 建议在仓库「外」生成测试项目,避免 pnpm workspace 导致子项目没有 node_modules
cd ..
node create-vue3-int/bin/create-zhao-vue3.js demo-app --default
cd demo-app
pnpm install   # 若仍在 workspace 内,改用:pnpm install --ignore-workspace
pnpm dev

若在脚手架目录内生成(如 my-dem1),pnpm install 可能显示 Already up to date 但不安装依赖,请执行:

pnpm install --ignore-workspace

发布

npm publish

确保 files 包含 binsrctemplates