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

ee-share

v0.0.1

Published

Vue3's shared components

Readme

ee-share

基于 Vue3 的共享组件,可以在 ee-share 官网分享和使用 Vue3 组件。

ee-share 旨在让重复的业务组件仅写一次,多项目复用,分享的组件还会自动生成在线文档。别人的也可以直接拿来使用,让做项目就像拼积木。

使用方法

安装CLI

npm install -g ee-share-cli

CLI 工具能帮助你分享和使用共享组件

分享组件

  1. ee-share 官网使用微信扫码注册账号
  2. 组件管理页 创建一个新组件,之后复制分享命令
  3. 打开你的 vue3 项目目录,无论是 vue-cli 还是 vite 的项目,打开命令行例如 D:\My-Project
  4. 将第 2 步复制的分享命令粘贴到命令行,显示例如 D:\My-Project>ee-share share -k b88020a7190b456ea97adeb2fb57d232 -p 组件路径
  5. 填好你要分享的组件路径回车等待完成即可,首次上传可能需要点时间请耐心等待

使用组件

  1. 项目首次使用 ee-share 分享的组件需要先安装 npm install ee-share
  2. ee-share 找到适合你的组件或在 组件管理页 找到你自己分享的组件,点击复制安装命令
  3. 粘贴命令回车即可,显示例如 D:\My-Project>ee-share use -k 12f0ed65fb704f20861fcaaa2a33cd96 -v 0.0.0
  4. 注意,安装了组件后会在项目根目录生成一个 ee-share.json 记录所有安装的组件,这个文件记得提交到你的版本控制中。新增了组件后记得让其它组员执行一下 ee-share sync 命令来同步安装的组件
  5. 在项目中需要用到组件的地方直接 import { 组件名 } from 'ee-share'; 即可