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

typescript-czh-ui

v0.1.2

Published

``` npm install -g @vue/cli ```

Readme

czh-ui

使用官方的 vue-cli 初始化一个 Vue 项目

npm install -g @vue/cli

初始化项目以后修改package.json

将"private"字段改为false(意思是公开的npm包,true为私有的npm包,需要付费)
添加"main"字段为打包后引用的文件路径,例如"main": "./dist/czhui.common.js"
添加"files"字段,值为需要导出的文件,例如"files": ["dist/*", "src/*", "public/*", "*.json", "*.js"]
添加scripts打包命令,"build-bundle": "vue-cli-service build --target lib --name czhui ./src/components/index.js"
注意:scripts命令中czhui是自定义的打包后的文件名,./src/components/index.js是打包入口

入口文件配置

// 引入组件
import TopBar from './TopBar.vue'
import CButton from './CButton.vue'

const Components = {
  TopBar,
  CButton
}

// 安装组件
const install = function (Vue) {
  Object.keys(Components).forEach(name => {
    Vue.component(name, Components[name])
  })
}

// <script>标签使用vue时自动完全加载
if (typeof window !== 'undefined' && window.Vue) {
  install(window.Vue)
}

// 按需加载
export {
  TopBar,
  CButton
}

// 默认完全加载
export default {
  install
}

打包项目

npm run build-bundle

发布项目到npm包

npm publish

Customize configuration

See Configuration Reference.