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

jzt-cli

v0.6.2

Published

快速生成九州通前端基础项目的命令行工具

Readme

发包方法:npm run pub

此方法原理是利用publish.js脚本,动态更新package.json 中的版本号,然后执行npm publish 命令,发布到npm上

注意发包前保证变更代码已经提交到 git

调试方法1: npm run dev

此种方法会实时监听代码的变化,让jzt命令时刻处于最新状态,不需要每次都重新安装

  • 1.npm run dev
  • 2.npm link --force (初次运行的时候执行,后面就不需要了)
  • 3.新开一个命令行窗口,运行jzt 命令即可

注意:如果遇到 Remove the existing file and try again 报错,去删除对应的执行文件即可

调试方法2: npm link --force

  • 1.npm run build
  • 2.npm link --force
  • 3.运行jzt 命令即可

注意:如果遇到 Remove the existing file and try again 报错,去删除对应的执行文件即可

全局安装

npm install -g jzt-cli@latest 
# or
yarn global add -g jzt-cli@latest 
# or
pnpm add -g jzt-cli@latest  

全局升级

npm update -g jzt-cli
# or
yarn global upgrade --latest jzt-cli
# or
pnpm up --latest -g jzt-cli

全局卸载

npm uninstall -g jzt-cli
# or
yarn global remove jzt-cli
# or
pnpm remove -g jzt-cli

使用方法

# jzt create 项目名称 模板序号 是否强制覆盖
jzt create myproject 1 -f

# 交互式选择模板并创建项目
jzt create

# GUI 界面操作模式创建项目
jzt ui

# 当然也可以选择不安装jzt-cli创建项目,使用npx创建项目
npx jzt-cli create myproject 1
# or
npx jzt-cli create

更多命令

检查版本,也可以用于检查是否成功安装jzt-cli

jzt -v

更多帮助信息

jzt -h