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

@kechuanjia/my-ui-lib

v0.0.0-dev.4

Published

Pnpm workspace 1、安装工作区最新版本 "@element-plus/components": "^1.0.0" "@element-plus/components": "workspace:1.0.0" "@element-plus/components": "npm:@element-plus/components@latest" 2、安装已发布的npm版本 "@element-plus/components": "1.0.0" 3、更换版本时:先remove再重新安装,以

Readme

Pnpm workspace 1、安装工作区最新版本 "@element-plus/components": "^1.0.0" "@element-plus/components": "workspace:1.0.0" "@element-plus/components": "npm:@element-plus/components@latest" 2、安装已发布的npm版本 "@element-plus/components": "1.0.0" 3、更换版本时:先remove再重新安装,以清除缓存; 或者pnpm update 4、cli (1)切换到play目录执行dev命令 pnpm run -C play dev (2)安装到根目录 pnpm i rollup -w (3)安装到指定workspace pnpm i rollup --filter build (4)递归、并行执行命令 pnpm run -r --parallel clean -r(--recursive):递归地在所有子包(子项目)中执行命令 --parallel:并行执行命令,而不是顺序执行 5、pnpm link (1)本地调试方法一: 链接:cd docs && pnpm link ../dist/my-ui-lib 取消链接(pnpm unlink不生效):cd docs && pnpm i (2)本地调试方法二: vite alias,引用本地路径。示例: resolve: { alias: [ { find: /^element-plus(/(es|lib))?$/, replacement: path.resolve(epRoot, 'index.ts'), }, { find: /^element-plus/(es|lib)/(.*)$/, replacement: ${pkgRoot}/$2, }, ], }

Changesets 1、添加变更集工具 pnpm install @changesets/cli && npx changeset init 2、添加变更集 npx changeset 3、消耗所有变更集,并根据这些变更集更新到最合适的 semver 版本。它还为每个使用的变更集写入变更日志条目。 npx changeset version 4、发布 npx changeset publish

rimraf 移除所有node_modules npx rimraf --glob "**/node_modules"

Rollup npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript