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

zach-ui

v1.0.2

Published

``` npm install ```

Readme

jmd

安装和使用

安装依赖

npm install

本地启动,从example目录下启动,方便组件调试

npm run serve

build lib包,最终发布到npm

npm run build

版本更新规则

1.0.0-alpha.0

  • 第一位更改为不兼容更改
  • 第二位更改为功能性更改
  • 第三位为小版本更新或bug修复
  • alpha.0为开发测试版本迭代(需要引入指定版本)
  • beta.0为测试/版本迭代(需要引入指定版本)

npm更新机制

  • ~会匹配最近的小版本依赖包,比如~1.2.3会匹配所有1.2.x版本,但是不包括1.3.0
  • ^会匹配最新的大版本依赖包,比如^1.2.3会匹配所有1.x.x的包,包括1.3.0,但是不包括2.0.0
  • *会安装最新版本的依赖包

组件库开发规范

  • 每个组件需要以jmd__组件名作为最外层的class,内部需要以jmd__组件名为前缀,建议描述性的类名采用如jmd__xx-title,状态性采用jmd__xx--active
  • 发布时注意顺序: 先修改package.json中的version在npm run build

开发依赖说明

  • rollup-plugin-vue插件需指定版本,@5.1.9对应的是vue2.x,@6.0.0以上对应的是vue3.x

  • rollup-plugin-babel 该插件就是踩的关键的坑了。开源库提示,rollup-plugin-babel此插件迁移到了@rollup/plugin-babel,于是更新到了@rollup/plugin-babel调试,没使用jsx语法的打包没问题,使用了jsx语法的都无法识别,改为rollup-plugin-babel后则正常了。

  • rollup-plugin-babel插件需指定版本,babel7.x: npm install --save-dev rollup-plugin-babel@latest

  • 相关babel插件:

    npm install --save-dev rollup-plugin-babel@latest
    npm install --save-dev @babel/core @babel/cli @babel/preset-env 
    npm install babel-plugin-syntax-jsx babel-plugin-transform-vue-jsx babel-helper-vue-jsx-merge-props babel-preset-env --save-dev
  • 配置文件参看babel.config.js