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-clear

v0.0.16

Published

A CLI tool to quickly scaffold frontend projects with pre-configured templates

Readme

create-clear

快速创建前端项目的脚手架工具

npm version node version license

简介

create-clear 是一个简单易用的 CLI 工具,帮助你快速创建预配置的前端项目。无需手动配置,一键生成包含最佳实践的项目模板。

特性

  • 🚀 快速创建 - 一条命令即可创建完整的项目结构
  • 📦 多种模板 - 支持 React、Taro 等多种前端框架
  • 🎨 开箱即用 - 预配置了常用的开发工具和最佳实践
  • 🔧 灵活定制 - 可根据需求选择不同的项目模板
  • 💡 交互式界面 - 友好的命令行交互体验

使用方法

使用 npm

npm create clear@latest

使用 pnpm

pnpm create clear

使用 yarn

yarn create clear

可用模板

mobile-taro

基于 Taro 的多端移动应用模板,支持微信小程序、H5、React Native 等多个平台。

特性:

  • ✅ TypeScript 支持
  • ✅ 状态管理
  • ✅ 路由配置
  • ✅ UI 组件库
  • ✅ 开发工具配置

admin-react

基于 React 的后台管理系统模板,适合快速搭建企业级管理后台。

特性:

  • ✅ React 18+
  • ✅ TypeScript
  • ✅ 路由管理
  • ✅ 状态管理
  • ✅ UI 组件库
  • ✅ 权限管理

使用示例

运行命令后,按照提示操作:

$ pnpm create clear

✔ What is the name of project? … my-awesome-project
✔ Pick a project template › mobile-taro
正在拉取模版: promonkeyli/program-template/frontend/mobile-taro...
✔ 模版拉取成功

然后进入项目目录并安装依赖:

cd my-awesome-project
pnpm install
pnpm dev

系统要求

  • Node.js >= 19.0.0 || >= 20.0.0 || >= 22.0.0

工作原理

create-clear 使用 tiged 从 GitHub 仓库拉取项目模板,无需克隆整个 Git 历史,速度更快。

开发

# 克隆仓库
git clone https://github.com/promonkeyli/clear.git

# 进入项目目录
cd clear/packages/create-clear

# 安装依赖
pnpm install

# 构建
pnpm build

# 本地测试
pnpm test

贡献

欢迎提交 Issue 和 Pull Request!

许可证

MIT

相关链接


Made with ❤️ by promonkeyli