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

@qlover/create-app

v3.1.2

Published

Create a new app with a single command

Readme

@qlover/create-app

从 GitHub 仓库的 examples/ 拉取模板列表,下载并解压模板到本地目录;生成后会把模板中 workspace:* 依赖解析为 npm 上的具体版本(失败时回退为 latest),以便项目可独立安装。

👉 中文文档 | English Docs

TL;DR

npx @qlover/create-app@latest

安装

npm install -g @qlover/create-app

使用方法

推荐使用 npx(避免全局安装):

npx @qlover/create-app

也可以全局安装后直接运行二进制:

create-app

交互流程

运行后会依次询问:

  • Project name:项目目录名(若目录已存在会提示更换)
  • Template name:模板名(从 GitHub qlover/fe-baseexamples/ 动态获取)

CLI 参数

  • -v, --version:输出版本号
  • -d, --dry-run:不写入文件(用于预览生成过程)
  • -V, --verbose:输出更多信息

示例:

npx @qlover/create-app@latest --dry-run --verbose

特性

  • 快速项目脚手架
  • 交互式命令行界面
  • 模板来自 GitHub examples/,无需在本地维护模板清单
  • 创建后自动处理模板中的 workspace:* 依赖(解析为 npm 最新版本;失败时回退为 latest

可用模板

模板列表来自 GitHub qlover/fe-baseexamples/,随仓库内容变化。当前常见模板如下:

| 模板 | 简介 | | --------------------- | -------------------------------------------------------------------------------------------------------------- | | react-seed | Vite + React 单页应用:集成 qlover 核心库、IOC、路由、i18n、Tailwind CSS 4 与开发态 Mock API。 | | next-seed | Next.js 全栈 应用:分层架构、Supabase、Ant Design、IOC,适合常规 Web 业务。 | | next-oauth-wrapper | Next.js OAuth 2.0 授权服务器 示例:shared/oauth-wrapper 协议内核 + Supabase 持久化,可替换上游用户系统。 | | taro-seed | Taro + React 多端 模板:微信小程序、H5 等,含 IOC、i18n、主题与鉴权。 | | browser-plugin-seed | Plasmo + React 浏览器扩展(Manifest V3):Popup、Content Script,含路由、i18n 与鉴权。 |

各模板详细说明见对应目录下的 README.md