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-uni-plus

v1.0.7

Published

An easy way to quickly build the uniapp project

Readme

✨ create-uni-plus

uni-plus版本

🔗 相关链接

🌼 简介

用于快速搭建 uniapp 前端项目的命令行工具

📋️ 模版

  • 快速生成 Vue3 + TS + Vite + Pinia + ESLint + Prettier + Lint-staged + commitLint 的模板

📦 选择类型

uni-plus-base(基础模板)

所有的衍生项目都基于 base 项目,推荐使用 base 项目,因为 base 项目没有太多功能,只是基础配置。

如果你需要的功能很多,推荐你直接去修改 demo 项目

uni-plus-demo(DEMO项目)

这个项目包括了

  • echarts 图表案例
  • pinia 状态管理案例
  • 权限控制案例
  • Layout 布局案例
  • 请求使用案例(包括分页、下拉更新、上拉加载更多)
  • ...

uni-plus-mock(MOCK项目)

这个项目主要是为 uni-plus-demo 中请求案例提供 mock 数据

你可以直接使用,也可以根据你的需求修改

下载之后,执行 pnpm i pnpm start:dev(默认运行在 3000 端口)

uni-plus-demo 中已经配置了默认的 mock 请求地址

所以你只需要在也启动 uni-plus-demo 即可访问 mock 数据

🛠️ 使用

# 直接创建项目,项目名为 my-project
pnpm create uni-plus my-project
# 【注意】如果无法创建项目,可以是有缓存,可以加上 `@latest` 
pnpm create uni-plus@latest my-project

# 查看帮助
pnpm create uni-plus --help

# 设置文件名
pnpm create uni-plus --name my-project