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

hmf-cli

v1.0.10

Published

hmf-cli 一个快捷创建完整模板项目的命令行工具

Downloads

8

Readme

HMF-CLI

一个快捷创建完整模板项目和批量克隆仓库的命令行工具。

安装

全局安装

npm install -g hmf-cli

直接使用 npx 一次性使用

npx hmf-cli create
npx hmf-cli list
npx hmf-cli clone

创建项目

交互式选择模板

hmf-cli create  
# or  
hmf-cli create my-project

列出所有可用模板

hmf-cli list

直接指定模板类型(type)

hmf-cli create my-project -t react  
# or  
hmf-cli create my-project --template react

批量克隆仓库

使用配置文件批量克隆

# 使用默认配置文件 hmf-repos.json
hmf-cli clone

# 指定配置文件
hmf-cli clone -c my-repos.json

直接指定仓库名称

# 克隆单个仓库
hmf-cli clone -r vue3-ts-template

# 克隆多个仓库
hmf-cli clone -r vue3-ts-template react-ts-template vue3-mini-template

指定用户名和目录

# 指定 GitHub 用户名
hmf-cli clone -u your-username -r repo1 repo2

# 指定克隆到的目录
hmf-cli clone -d ./projects -r vue3-ts-template react-ts-template

配置文件格式

创建一个 hmf-repos.json 文件来配置要批量克隆的仓库:

{
  "username": "huangmingfu",
  "repos": [
    "vue3-ts-template",
    "vue3-mini-template",
    "react-ts-template",
    "react-mobile-template"
  ]
}

Clone 命令选项

  • -c, --config <path>: 指定配置文件路径(默认: hmf-repos.json)
  • -u, --username <username>: 指定 GitHub 用户名(默认: huangmingfu)
  • -r, --repos <repos...>: 直接指定要克隆的仓库名称(多个用空格分隔)
  • -d, --dir <directory>: 指定克隆到的目录

其他命令

查看当前版本

hmf-cli -v
# or
hmf-cli --version

查看帮助

hmf-cli --help
hmf-cli create --help
hmf-cli clone --help

卸载

npm uninstall -g hmf-cli

使用示例

创建项目示例

# 交互式创建项目
hmf-cli create

# 创建 React 项目
hmf-cli create my-react-app -t react

# 创建 Vue3 项目
hmf-cli create my-vue-app -t vue

批量克隆示例

# 使用默认配置批量克隆
hmf-cli clone

# 克隆指定的几个仓库到 projects 目录
hmf-cli clone -d ./projects -r vue3-ts-template react-ts-template

# 克隆其他用户的仓库
hmf-cli clone -u antfu -r eslint-config utils