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

joinf-tms-statics-charts

v0.5.29

Published

tms统计相关图表

Readme

joinf-tms-statics-charts

按 vue-cli 的官方文档,通过 --target lib 实现 vue 插件

如何在项目中使用该插件

    npm i joinf-tms-statics-charts -S

如何升级插件

  1. 当前插件放在公司的私有仓库: http://npm.joinf.com

    升级前,请先确保 远程仓库是 上述地址

    下面两种修改方式,选择一种即可

    • nrm 方式
     // 如果未添加过
     nrm add joinf npm.joinf.com
    
     // 切换远程仓库
     nrm use joinf
    • 直接修改 npm 配置
     npm config set registry http://npm.joinf.com
  2. 重新打包修改后的代码,打包结果会输出到 dist 目录下

        npm run build
  3. 修改 ./pacakge.json 中的版本号,小版本加 1 即可

    比如 当前是 "version": "0.5.26"

    修改后则是 "version": "0.5.27"

  4. 发布插件新版本

    • 先判断是否在线
        npm whoami

    判断控制台输出结果:

    当前状态已登录,则会输出当前的登录用户名; 否则 报错

    • 未登录情况下 需要登录
        npm login
    
        /**
        * 可以先使用 下面的账号 密码
        * username: wanhc
        * password: wanhc123456
        * email: 写自己的就行
        * 也可以找 运维主管 郑文通 去 申请自己的账号
        */
    • 所有准备工作 ok 后,运行发布命令
     npm publish

    新的插件版本 已经发布成功; 最终 需要修改 使用该插件最新版本的项目, 更新 该插件的 版本号,重新运行npm i 即可