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

@rc-component/util

v1.12.0

Published

Shared React utilities for rc-component packages.

Readme

特性

  • 面向 React 构建,并由 rc-component 团队维护。
  • 被 Ant Design 使用和其他 React 组件库使用。
  • 提供 TypeScript 类型声明,同时输出 ES module 和 CommonJS 产物。
  • 示例、测试和预览构建与包源码保持一致。

该包历史上曾以 rc-util 发布。新代码推荐使用带 scope 的包名。

安装

npm install @rc-component/util

使用

import {
  Portal,
  raf,
  useEvent,
  useLayoutEffect,
  warning,
} from '@rc-component/util';

示例

运行本地 dumi 站点:

npm install
npm start

然后打开 http://localhost:8000

API

该包提供在 rc-component 和 Ant Design 包中复用的小型聚焦工具。优先导入公开入口;针对 DOM、React 或测试辅助能力,可使用子路径导入。

| 范围 | 示例 | | ------------ | ---------------------------------------------------------------------------------- | | React hooks | useEvent, useLayoutEffect, useMergedState, useState 辅助方法 | | React 工具 | Children/toArray, composeRef, pickAttrs, Portal | | DOM 工具 | Dom/canUseDom, Dom/contains, Dom/dynamicCSS, Dom/focus, getScrollBarSize | | 异步辅助方法 | raf, raf.cancel | | 警告工具 | warning, noteOnce, resetWarned | | 测试工具 | test/domHook 用于 DOM 原型 spy |

docs/examples 中的示例覆盖了常用的子路径辅助工具。

本地开发

npm install
npm start
npm test
npm run build

dumi 站点默认运行在 http://localhost:8000

发布

npm run prepublishOnly

包构建完成后,发布流程由 @rc-component/np 通过 rc-np 命令处理。

许可证

@rc-component/util 基于 MIT 许可证发布。