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

@beisen-cmps/italent-feedmix-components

v3.2.63

Published

Readme

feed 的一些小组件

一、Evaluation 组件

参数

name:"", //评价默认显示的文本
type:"", //1评分  2评价
value:"", //评分的时候分值
goal:"" //评价类型

二、GiftImg 组件

参数

type:1, //显示图标类型 1入职祝福礼物盒 2 生日祝福礼物盒 3 打赏图标
onClick:function(type){}  //图标点击事件

三、头像组件

参数

size:"30",//大小
name:"",//名称
avatar:{
    hasAvatar: true,//是否有头像
    img:"",//头像图片地址
    color:""//没有头像时显示的颜色
},
blessingType:1,//祝福类型
enableFeatures:true,//是否开通送祝福
userId:"",//用户id
decorationType:1,//挂件类型,为4文化标签,3系统勋章,2企业勋章,1祝福
udc:{
    bless:{},
    medal:{}
}

四、feed 布局组件

参数

avatarProps:{
    size:"30",//大小
    name:"",//名称
    avatar:{
        hasAvatar: true,//是否有头像
        img:"",//头像图片地址
        color:""//没有头像时显示的颜色
    },
    blessingType:1,//祝福类型
    enableFeatures:true,//是否开通送祝福
    userId:"",//用户id
    decorationType:1,//挂件类型,为4文化标签,3系统勋章,2企业勋章,1祝福
    udc:{
        bless:{},
        medal:{}
    }
}

五、单条 feed,顶部布局组件(显示标题+评价+打赏+礼物盒+可见范围+操作+创建日期) 部分

参数

 const testProps = {
    createDate: "1989/0/0", //发布日期  可以接受一个react组件
    visibility: 1, //可见范围1:所有人可见  2:仅部门可见 3:仅相关成员可见
    isShowOperation: true, //是否显示操作
    opreationData: [] //操作数据源
  }

六、加载更多

  • 参数
handleLoadMore: 点击回调;
loading: 加载状态;
  • 使用
 <LoadMore handleLoadMore={this.handleLoadMore} loading={loading}