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

vue-antd-tng

v1.0.0

Published

### 一、系统菜单配置(只需要配置测试环境,正式环境发布的时候会一起同步) 1、创建菜单:运营端平台(https://test-user-fe.eazytec-building.com 账号:admin/Pp@123123)-系统菜单管理 2、授权集成商:运营端平台-集成商管理-菜单授权 3、集成商授权项目:集成商端平台(https://test-member-fe.eazytec-building.com 账号:18068279907/123456)-项目管理,选择对应的项目的查看详情-客户信息-

Downloads

14

Readme

菜单权限

一、系统菜单配置(只需要配置测试环境,正式环境发布的时候会一起同步)

1、创建菜单:运营端平台(https://test-user-fe.eazytec-building.com 账号:admin/Pp@123123)-系统菜单管理 2、授权集成商:运营端平台-集成商管理-菜单授权 3、集成商授权项目:集成商端平台(https://test-member-fe.eazytec-building.com 账号:18068279907/123456)-项目管理,选择对应的项目的查看详情-客户信息-修改信息,到开通应用中找到创建的应用,勾选确认

二、应用菜单配置(只需要配置测试环境,正式环境发布的时候会一起同步)

  1. 第一步:运营端平台-创建应用 -登录(https://test-user-fe.eazytec-building.com/isystem/app 账号:admin/Pp@123123) -进入 产品管理->新增产品(注意‘产品分类’字段,产品分类中包含管理端和用户端,创建的时候确认好是哪边的应用),app端应用需配置产品地址(h5中应用跳转路由)字段,pc端应用创建完成之后在 操作-菜单 中配置菜单信息(参照已有应用配置,注意:类似详情页这种隐藏菜单须勾选隐藏路由开关)
  2. 第二步:运营端平台-集成商授权应用 -进入 集成商管理,选择应用授权
  3. 第三步:集成商管理平台-项目授权应用 -登录(https://test-member-fe.eazytec-building.com 账号:18068279907/123456) -进入 项目管理,选择对应的项目的查看详情-客户信息-修改信息,到开通应用中找到创建的应用,勾选确认
  4. 应用菜单配置完成,刷新正在开发的项目查看应用菜单是否配置正确

sockjs-node/info报错

1.找到/node_modules/sockjs-client/dist/sockjs.js 2.找到代码的 1605行

try { // self.xhr.send(payload); 把这里注掉 } catch (e) { self.emit('finish', 0, ''); self._cleanup(false); }

Vue 框架用户短时间内多次点击同一按钮仅触发一次

利用元素的 disabled 属性和CSS的pointer-events属性,新建自定义指令v-preventClick,默认2s内不能重复点击 使用: <el-button @click="changeSetting()" size="medium" type="primary" v-preventClick="3000">全部设定 // 3s内不能重复点击

tip

  • 拷贝蓝湖样式时,注意去掉样式中的font-family,否则可能导致font-weight被覆盖

removeEventListener不起作用

1、没有将相同的函数传递给 addEventListener 和 removeEventListener 方法。 2、使用 bind 方法,它在调用 removeEventListener 时返回一个新函数。 3、在与 addEventListener 方法不同的 DOM 元素上调用 removeEventListener。 4、两次注册事件侦听器 – 使用和不使用捕获标志。