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

v0.4.2

Published

一条命令生成 rjgfNY 标准 Vue3 子项目(@rjgfny/ui-pro + @rjgfny/utils)

Readme

create-rjgfny

一条命令生成 rjgfNY 标准 Vue3 子项目(内置 @rjgfny/ui-pro + @rjgfny/utils + @rjgfny/config 工程规范)。

使用

npm create rjgfny@latest my-app
# 或
pnpm create rjgfny my-app

交互模式会询问:

  • 模板类型(standard-vue / admin-vue
  • 是否启用 vue-router
  • 是否启用 pinia
  • 是否初始化 Git + 远程仓库

非交互(CI/脚本)

pnpm create rjgfny my-admin \
  --template admin-vue \
  --git \
  --git-remote https://github.com/Oceaninnerpeace/my-admin.git \
  --yes
pnpm create rjgfny my-app \
  --router \
  --pinia \
  --git \
  --yes

模板说明

| 模板 | 说明 | |------|------| | standard-vue | 标准业务子项目,可按需加 router/pinia,内置工程规范 | | admin-vue | 管理端模板:Layout + 菜单 + 路由 + Pinia + 工程规范 |

生成项目默认包含:

  • @rjgfny/config(ESLint / TypeScript / Prettier / Commitlint)
  • husky 提交校验钩子
  • 统一脚本:typecheck / lint / format

源码仓库(GitHub)

脚手架源码地址:

https://github.com/Oceaninnerpeace/base-cli.git

首次推送本地代码:

cd D:\rjgfCode\create-rjgfny
git init
git add .
git commit -m "feat: init create-rjgfny scaffold"
git branch -M main
git remote add origin https://github.com/Oceaninnerpeace/base-cli.git
git push -u origin main

说明:base-cli脚手架仓库pnpm create rjgfny 生成的业务子项目会默认建议远程为 https://github.com/Oceaninnerpeace/<项目名>.git(可在交互时修改)。

本地调试

cd D:\rjgfCode\create-rjgfny
node ./bin/index.mjs my-test-app

发布

package.jsonfiles 只包含 bintemplatesREADME.md不会把 node_modules 发到 npm

发布前先自检(推荐):

npm pack --dry-run

确认列表里没有 node_modules/ 再发布:

npm publish --access public

发布后:

npm create rjgfny@latest <project-name>