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-wqy-web

v1.3.0

Published

一个用于快速创建PC端、移动端、uniApp项目的脚手架工具

Readme

Create WQY App

面向 Vue3/Vite 生态的交互式脚手架,帮助你快速搭建内部统一的 PC 端、移动端 H5 或 UniApp 的标准化项目。

快速开始

通过 npm create 直接拉起交互:

npm create-wqy-web@latest

提示:保留 @latest 以确保不会命中旧缓存版本。

若希望长期保留 CLI,可先进行全局安装:

npm install -g create-wqy-web
create-wqy-web --version
create-wqy-web my-project

命令执行后将启动交互式问答,依次引导你选择模板、插件及初始化配置。

注意事项

  • Git 克隆失败:若提示无法 git clone,通常是未连接公司内网。

交互式选项说明

  1. 项目名称:新建目录名称;若目录已存在可选择覆盖或重新输入。
  2. 模板类型
    • PC:Vue3 + Vite + Element Plus
    • Mobile:Vue3 + Vite + Vant
    • UniApp:Vue3 + UniApp
  3. 插件预设(可多选):
    • 全部配置:一键启用所有插件,适合快速起步
    • 代码规范:TypeScript、ESLint、Prettier、Husky
    • Vue 生态:Pinia 状态管理
    • UI 组件库:自动匹配模板所需 UI 库
    • 开发工具:Axios、Lodash、Moment、VueUse
  4. 确认创建:展示最终配置摘要,确认后自动拉取模板、注入插件并完成清理。

生成项目后的下一步

cd my-project
pnpm install    # 或 npm install / yarn install
pnpm dev        # 启动开发服务器

若需升级脚手架,直接重新执行 npm create wqy-web@latest 或运行 npm update -g create-wqy-web