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

sjm-nova-cli

v1.0.5

Published

这是一个用来快速生成docker部署的CLI

Readme

Nova CLI

一个强大的前端开发命令行工具。

安装

全局安装

npm install -g nova-cli

本地开发

# 克隆项目
git clone <repository-url>
cd nova-cli

# 安装依赖
npm install

# 构建项目
npm run build

# 本地链接
npm link

使用方法

初始化项目

nova init

选项:

  • -t, --template <template> - 指定项目模板
  • -y, --yes - 跳过提示,使用默认值

创建组件或页面

nova create <name>

选项:

  • -t, --type <type> - 类型:component, page, hook (默认: component)
  • -d, --dir <directory> - 输出目录

构建项目

nova build

选项:

  • -o, --output <dir> - 输出目录 (默认: dist)
  • --minify - 压缩输出

启动开发服务器

nova dev

选项:

  • -p, --port <port> - 端口号 (默认: 3000)
  • --host <host> - 主机地址 (默认: localhost)

开发

脚本命令

  • npm run build - 构建项目
  • npm run dev - 开发模式运行
  • npm run clean - 清理构建文件

项目结构

nova-cli/
├── src/
│   ├── index.ts          # 主入口文件
│   └── commands/         # 命令实现
│       ├── init.ts       # 初始化命令
│       ├── create.ts     # 创建命令
│       ├── build.ts      # 构建命令
│       └── dev.ts        # 开发服务器命令
├── dist/                 # 构建输出
├── package.json
└── tsconfig.json

发布到 npm

  1. 登录到 npm:
npm login
  1. 发布包:
npm publish

技术栈

  • TypeScript - 类型安全
  • Commander.js - 命令行参数解析
  • Inquirer.js - 交互式命令行界面
  • Chalk - 命令行颜色和样式
  • Ora - 加载动画
  • Boxen - 边框样式
  • tsup - 构建工具

许可证

ISC