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

bamboosnkempire

v1.1.0

Published

BambooSnk 组件库,支持 Vue3 + Element Plus + TailwindCSS + SCSS + @pureadmin/utils,含 playground 与文档站点。

Readme

BambooSnkEmpire

面向新版 HNZHFN 项目的 node_modules 包管理,技术栈:VUE3 + TS + Tailwind + PureAdmin。 BambooSnk 业务组件与工具的 Vue 3 组件库。

安装

npm install bamboosnkempire

使用方法

import { createApp } from "vue";
import App from "./App.vue";
import BEmpire from "bamboosnkempire";
import "bamboosnkempire/style.css";

createApp(App).use(BEmpire).mount("#app");

按需引入

import { DynamicForm, Spotlight, mergeUrlSuper } from "bamboosnkempire";

发布流程

pnpm changeset
pnpm version-packages
pnpm release

本地预览

pnpm play
pnpm docs:dev

本地发布模拟(tgz 联调)

使用 tarball(tgz 包)安装代替直接本地文件夹依赖,确保本地验证与 npm 发布行为一致:

pnpm local:publish

默认消费项目路径为 ../pure-admin-bos。

如需自定义消费项目路径:

pnpm local:publish -- --consumer D:/PROJECT_GITS/.ZHFN_RefactorBuild/pure-admin-bos

如需在安装后自动启动消费端 dev 服务:

pnpm local:publish:dev

高级参数示例:

pnpm local:publish -- --pm pnpm --install-timeout 240000 --install-retries 1
  • --pm:强制指定消费端包管理器(npmpnpm
  • --install-timeout:安装超时时间(毫秒,默认 180000
  • --install-retries:安装失败或超时重试次数(默认 0
  • --help:显示完整脚本参数说明