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-meetfun-admin

v1.0.5

Published

Create a new meetfun admin project

Readme

create-meetfun-admin

快速创建基于 meetfun-admin-template 的项目脚手架。

使用

pnpm create meetfun-admin <project-name>

在当前目录初始化(适合已有 git 仓库的场景):

pnpm create meetfun-admin .

交互配置

执行命令后会依次询问以下配置,均可留空跳过:

| 配置项 | 说明 | 对应文件 | |--------|------|----------| | 系统标识 | 自动转大写,替换所有 env 文件的 VITE_SYSTEM_TYPE | apps/web-antd/.env* | | 系统名称 | 替换所有 env 文件的 VITE_APP_TITLE | apps/web-antd/.env* | | 接口前缀 | 替换域名中的 server,同步更新 vite 代理路径 | apps/web-antd/.env*vite.config.mts | | 项目名称 | 必填,替换根 package.jsonname 字段 | package.json |

配置完成后自动执行 pnpm install

示例

┌  create-meetfun-admin
│
◇  请输入系统标识(VITE_SYSTEM_TYPE,留空跳过)
│  TALENT
│
◇  请输入系统名称(VITE_APP_TITLE,留空跳过)
│  人才管理系统
│
◇  请输入接口前缀(替换域名中的 server,留空跳过)
│  meetfun-talent
│
◇  请输入项目名称(输入 . 在当前目录初始化)
│  my-talent-project
│
◇  项目创建成功 ✅
│
◇  依赖安装完成 ✅
│
└  🎉 项目创建完成!

  进入项目目录:
    cd my-talent-project

  启动开发服务器:
    pnpm dev

  构建生产版本:
    pnpm build

  代码检查:
    pnpm lint

本地测试

# 构建
pnpm --filter create-meetfun-admin build

# 直接执行
node packages/create-meetfun-admin/dist/index.mjs my-project

环境要求

  • Node.js >= 20.10.0
  • pnpm