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

zcb-components

v1.0.0

Published

# zcb-components(2.5项目使用勿删除)

Downloads

1

Readme

支出宝私有库地址:http://npm-hub.zhichubaohost.com/

zcb-components(2.5项目使用勿删除)

简介

这是一款基于 vue +elemnet plus ui 框架开发的基础 UI 组件

目录

examples 为原来的src目录 用于演示,
packages 目录为打包目录  开发好的 组件放到packages中,
lib 目录为打包好的js css   命令为:npm run lib 打包

用法

  1. 安装依赖
npm install --save zcb-components
  1. 引入并使用
// 引入npm包的公共js
import zcbs from 'zcb-components' // 引入了组件
Vue.use(zcbs)

1.管理 npm 仓库源 - 安装 nrm

# 全局安装nrm
$ npm install -g nrm
# 添加私有库
$ nrm add zcb http://npm-hub.zhichubaohost.com/
# 查看现有的npm源
$ nrm ls    输入命令后如下:
* npm -------- https://registry.npmjs.org/
  yarn ------- https://registry.yarnpkg.com/
  cnpm ------- http://r.cnpmjs.org/
  taobao ----- https://registry.npm.taobao.org/
  nj --------- https://registry.nodejitsu.com/
  npmMirror -- https://skimdb.npmjs.com/registry/
  edunpm ----- http://registry.enpmjs.org/
  zcb--  http://npm-hub.zhichubaohost.com/
#设置npm源
$ nrm use zcb

2.npm 包发布

# 注册用户
$ npm adduser 输入命令后如下:
   npm notice Log in on  http://npm-hub.zhichubaohost.com/
   Username: yourusername
   Password:
   Email: (this IS public) [email protected]
   Logged in as yourusername on  http://npm-hub.zhichubaohost.com/.
# 登录用户
$ npm login (如未登录先登录)
# 发布npm
$ npm publish
npm unpublish 包名 --force //强制删除
# 查看当前登录用户
$ npm who am i

3.nrm 安装和 npm 发布参考链接

verdaccio 搭建私有 npm 服务器:

(https://www.jianshu.com/p/0c905e4a8b70)
[https://www.jianshu.com/p/9e9fe62e8e39]

4.如果没有安装 nrm 可以使用原生

npm config set registry=http://npm-hub.zhichubaohost.com/ (设置npm库源地址)
npm config get registry (查看npm库源地址)
npm publish (发布开发的npm包)
npm unpublish [email protected] --force (删除npm指定版本的包 - 小心误操作慎用)
npm unpublish zcb-components --force  (删除npm库的所有版本的包 - 小心误操作慎用)

5.如果开发调试时

npm link 发布到本地 npm unlink zcb-components 项目中解除远程关联 npm link zcb-components 项目中下载包