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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@zhijiancloud/bpm

v1.0.25

Published

智建云BPM组件库

Readme

zhijiancloud-ui-bpm

Project setup

yarn install

Compiles and hot-reloads for development

yarn serve

开发模式默认入口为examples/main.ts, 开发模式走的vue-cli,见package.json

Compiles and minifies for production

yarn build

build是build组件库,编译走的是webpack和gulp, 见package.json

Lints and fixes files

yarn lint

文档vuepress

yarn docs:dev
yarn docs:build

Customize configuration

See Configuration Reference.

eslint

项目已加入了eslint代码检查,具体规则配置在 package.json - eslintConfig, 具体规则要修改,见eslint文档

主动执行eslint代码检查:yarn lint

开发时代码检查

默认代码保存时不检查,如需要开启,可在vue.config.js修改:

# vue.config.js
# https://cli.vuejs.org/zh/config/#lintonsave
# 当前为false
lintOnSave: true

提交代码前检查代码

由于并不会每次记得主动运行代码检查,项目中添加了commit代码时自动检查有更改的文件。 借助vue-cli内置的yorkie, 以及lint-staged实现,具体可见:git hooks, 相关内容可自行搜索git hooks, husky, yorkie, eslint, lint-stage等内容了解。

lint-stage, 当前装的版本是13.0.0, 见其版本说明,新版本14,15对node的版本比较高要求,13.0.0则要求node版本至少为:14.13.1, or 16.0.0

每次commit代码时,会对有更改的文件跑lint检查,以保证代码的规范性。

如极个别特殊情况,需要跳过git hooks检查,可:git commit -m 'xxx' --no-verify