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

v3.3.0

Published

快速创建unibest项目的脚手架工具

Readme

📖 介绍

create-unibest 是一个用于快速创建 unibest 项目的轻量脚手架工具,它可以帮助你快速创建一个基于 vite + vue3 + TSuni-app 项目,同时提供了一些模板供你选择。

🚤 快速使用

pnpm create unibest <command> [options]              # 基本命令格式
pnpm create unibest my-project                       # 创建新的unibest项目
pnpm create unibest -v                               # 查看版本信息
pnpm create unibest -h                               # 查看帮助信息

命令行参数

支持通过命令行参数跳过交互式询问,实现静默/快捷创建。

| 参数 | 简写 | 说明 | 可选值 / 示例 | | :----------- | :--- | :----------- | :----------------------------------------------------------------------------------------------------- | | --platform | -p | 指定平台 | h5, mp-weixin, app, mp-alipay, mp-toutiao示例: -p h5,mp-weixin-p h5 -p mp-weixin | | --ui | -u | 指定 UI 库 | wot-ui, uview-pro, sard-uniapp, uv-ui, uview-plus, none | | --login | -l | 启用登录策略 | 无值,存在即开启 | | --i18n | -i | 启用多语言 | 无值,存在即开启 |

示例

# 1. 基础用法:指定 UI 库和平台(H5 + 微信小程序)
pnpm create unibest my-project -u wot-ui -p h5,mp-weixin

# 2. 进阶用法:指定 UI 库,并开启登录策略和多语言
pnpm create unibest my-project -u uview-plus -l -i

# 3. 极简用法:不使用 UI 库,但支持多端(H5 + App + 微信小程序)
pnpm create unibest my-project -u none -p h5,app,mp-weixin

全局安装(可选)

npm i -g create-unibest           # 全局安装,得到 best 命令
npm update -g create-unibest      # 更新 create-unibest 包

安装后可使用的命令:

best <command> [options]          # 基本命令格式
best my-project                   # 创建新的unibest项目
best -v                           # 查看版本信息
best -h                           # 查看帮助信息