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

rcge-cli

v0.0.3

Published

通用的react project 脚手架

Downloads

6

Readme

rcge-cli

rcge-cli 是一款基于react项目的脚手架。用于用户快速的生成项目模板。

支持的项目模板:

  • ✅ pc-admin:pc端的项目管理后台通用模板,此模板已经开源在github上:链接为:https://github.com/Chechengyi/antd-admin
  • ❌ mobile: todo 模板待完善
  • ❌ basic: todo 模板待完善

如何使用

npm install rcge-cli -g

rcg-cli create app

相关命令

| 命令 | 功能 | 示范 | | ------------- | ------------ | ------------------------------------------------------------ | | create | 创建一个项目 | rcg-cli create app | | add page | 添加页面 | rcg-cli add page home 添加page页面模板到指定目录 | | add component | 添加组件 | rcg-cli add component select添加select组件模板到指定目录 |

后续还有部署、集成相关的命令会继续完善。

如何工作

目前来讲,rcg-cli 所做的工作就是将 github 上的项目模板拉取到本地。添加了 生成页面以及 生成组件的脚本已减轻开发时的工作量。那么,在生成页面的时候,模板从何而来?脚手架如何知道要将模板复制到哪个位置?由此,需要维护一份配置文件:

配置文件

{
  "target": "pc-admin", // 项目类型
  "pageMenu": "src/routes", // 页面所在目录
  "componentsMenu": "src/components", // 组件所在目录
  "templateMenu": "template" // 模板目录
}

不同类型的项目模板最终对应文件结构不同,但是可以使用相同的参数去描述。这是 pc-admin 类型项目所对应的配置文件,会在项目创建的时候一并的被写入到创建项目的根目录,于此同时会将模板文件也写到项目根目录。命名为 template 文件夹,template 文件下对应两个文件夹:pagecomponent 。这就是对应的页面和组件的模板。

将模板文件暴露给用户的意义在于,用户可以自己定制模板的内容。但是在定制的同时,模板文件的命名一定要遵循 page、component

未来展望

目前来讲,rcg-cli 是一套功能很简单的脚手架。即便在后面部署的功能添加,在创建项目时的模板选择方面,仍会有极大的限制。开发者只能选择我提供的几种模板。

如果能将拉去模板的这个行为在提取出来作为一个包,姑且称之为物料,在配置文件里面去声明所要使用的物料,当然,在开发 rcg-cli 所使用的物料时,一定要遵循相关的规范。 我认为这样的设计比较适合一个公司下的内部使用。获取不同部门的每个团队最终自己所沉淀的模板是不相同的。这样做,既可以统一使用一个脚手架供全部开发人员使用,又可以自己定制符合自己团队的项目模板内容。

总的来说,目前提供的功能还是很有限,在未来的时间里,有更好的想法会继续完善这个工具。