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

lib-jtzbb

v0.0.30

Published

## 开发指南

Readme

jtzbb-engine

开发指南

  1. npm install 安装依赖
  2. npm start 启动 dev,进入对应的 router 进行开发

分支管理

  1. 从 master 分支创建新的 feat/fix 分支进行开发
  2. 提 mr 合入 master 分支,等待发版

commit 规范

不符合规范的 commit message 将无法提交,需要符合以下规范

  1. type 类型限制为以下:
  • feat: 新功能
  • fix: 修复 bug
  • docs: 文档修改
  • style: 代码格式修改, 注意不是 css 修改
  • refactor: 重构
  • chore: 构建工程或辅助工具的变动
  1. scope 限制:
  • engine 工程修改:jtzbb-engine
  • packages 修改:@jtzbb/packagesXXXX
  1. 规范
  • commit 记录与代码修改需要紧密关联
  • commit 禁止重复,如重复,需 rebase 后再提交
  • 使用中文描述
  • commit 事关 changelog 记录,如不符合规范将不接受 merge
  • 注意 : 为英文冒号
// packages 修改
feat(@jtzbb/core): 新增 xxx    ✅
feat(@jtzbb/core):新增 xxx     ❌ // 冒号后没空格
feat(@jtzbb/core): 新增 xxx     ❌ // 冒号错误
feat(@jtzbb): 新增 xxx   ❌ // scope 不正确
feat: 新增 xxx   ❌ // 无 scope

// 工程修改
chore(jtzbb-egine): 修改 xxx 配置     ✅
chore: xxxxx   ❌ // 无 scope

维护者发版

  1. git checkout master 切换到 master 分支
  2. git pull 拉取最新的代码
  3. npm run prePublish 手动更新版本变更,完成后将自动 push 代码到远程
  4. 等待 ci 发版 & 群机器人通知