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

uni-lib-cli

v0.1.4

Published

uni-lib 多端前端项目脚手架

Readme

uni-lib-cli

uni-lib 多端前端项目脚手架,支持从模版快速创建工程。

支持的模版

| 模版 | 说明 | | --- | --- | | admin-web | Vue 3 管理后台(Element Plus + uni-ui-lib) | | customer-web | Nuxt 3 C 端站点 | | customer-mobile | uni-app 移动端跨端 | | native-app | Flutter 原生应用骨架 |

使用方式

全局安装

npm install -g uni-lib-cli
uni-lib-cli create

Monorepo 本地调试

cd uni-lib-cli
npm install
npm run build
node dist/index.js create
# 或
npm run dev

非交互创建

uni-lib-cli create my-admin --template admin-web
uni-lib-cli create my-admin --template admin-web --dir ./apps --force

模版来源

创建项目时按以下顺序查找模版目录:

  1. monorepo 同级目录(如 ../admin-web
  2. 包内 templates/<模版名>/

开发 monorepo 时会优先使用仓库内最新工程;发布后使用 npm 包内 bundled templates。

发布

npm run release              # 默认 patch 递增并发布
npm run release -- minor     # minor 版本
npm run release -- major     # major 版本

流程:同步模版 → 构建 → 递增版本 → npm publish。版本号不会自动 git commit/tag,发布后可自行提交。

单独同步模版(不发布):

npm run sync:templates

本地 npm 认证:复制 .npmrc.example.npmrc 并配置 token(勿提交 .npmrc)。

开发

  • Node.js >= 18.12.0
  • npm run build — 编译 TypeScript 到 dist/
  • npm run dev — 直接运行 src/index.ts(tsx)
  • npm run sync:template:admin-web — 从 admin-web 同步模版(工作台 + 路线规划、协议管理、学生档案)