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-huijia-nuxt-starter

v1.0.1

Published

Nuxt Starter CLI

Readme

create-huijia-nuxt-starter

一个基于 Nuxt 4 的企业级项目启动模板 CLI 工具。集成了现代前端开发的最佳实践和常用工具库,帮助你快速搭建高质量的 Nuxt 项目。

✨ 特性

  • Nuxt 4: 使用最新的 Nuxt 框架。
  • UI 框架: 集成 Element PlusUnoCSS,快速构建美观界面。
  • 状态管理: 内置 Pinia,提供直观的状态管理。
  • 工具库: 集成 VueUseLodash,提供丰富的实用工具函数。
  • HTTP 请求: 封装了 Axios,支持拦截器和类型提示。
  • 代码规范: 预设 ESLint、Prettier 和 Stylelint,保证代码风格统一。
  • Git 钩子: 配置了 Husky 和 Lint-staged,在提交前自动检查代码。
  • TypeScript: 全面支持 TypeScript,提供优秀的开发体验。

🚀 快速开始

无需安装,直接使用 npm createnpx 即可快速创建项目:

使用 npm

npm create huijia-nuxt-starter

使用 npx

npx create-huijia-nuxt-starter

🛠️ 安装说明

如果你希望全局安装此 CLI 工具:

npm install -g create-huijia-nuxt-starter

安装后,可以在任意目录下运行:

create-huijia-nuxt-starter

📦 项目结构

创建后的项目将包含以下核心目录结构:

├── app/                # 应用源码
│   ├── api/            # API 接口定义
│   ├── components/     # Vue 组件
│   ├── composables/    # 组合式函数
│   ├── layouts/        # 页面布局
│   ├── pages/          # 页面路由
│   ├── stores/         # Pinia 状态管理
│   └── utils/          # 工具函数
├── public/             # 静态资源
├── nuxt.config.ts      # Nuxt 配置
└── uno.config.ts       # UnoCSS 配置

💻 本地开发

如果你想参与此 CLI 工具的开发:

  1. 克隆仓库:

    git clone <repository-url>
    cd nuxt-starter
  2. 安装依赖:

    pnpm install
  3. 链接到全局进行测试:

    npm link
  4. 现在你可以在本地运行 create-huijia-nuxt-starter 来测试你的更改。

📄 License

MIT