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

use-perf-context

v3.0.1

Published

a util to fix re-render for redux in hooks

Readme

高性能 Context

一.背景

本文提供了两种 React Hook Context: PerfContextCommonContext

usePerfContext 解决了 Context re-render 问题,实现更精细化的控制策略。

常用策略有:多层Context方案 、 组件memo化方案。

使用起来代码量较多,因此使用发布订阅模式手撕高性能Context,使用起来也较为方便。

如果你想用正常封装的 Context 形式,则可以使用 CommonContext

二.使用说明

// Context Store (./store.ts)
import { Payload2Action, Provider2Hook } from 'use-perf-context';
export interface IUserInfo {
  name: string;
  age: number;
}
export interface IPayload {
  SET_USER_INFO: Partial<IUserInfo>
}
// IAction = { type: 'SET_USER_INFO', payload: { name?: string; age?: number } }
export type IAction = Payload2Action<IPayload>;

export const initialState: IState = {
  userInfo: {
    name: "",
    age: 0
  },
};

export const globalReducer = (state: IState, action: IAction) => {
  switch (action.type) {
    case ActionType.SET_USER_INFO:
      return {
        ...state,
        userInfo: action.payload
      };
    default:
      return state;
  }
};
// usePerfContext<目标state集合的类型约束, dispatch的对象类型约束,目标属性名>(目标属性对象的属性名字符串)
// 使用类型推断和Provider2Hook工具泛型将hook与provider相关属性绑定
export const useUserContext = usePerfContext as Provider2Hook<IState, IAction>;

// Context Provider
import PerfContextProvider from 'use-perf-context';
function App() {
  return (
    <PerfContextProvider state={initialState} reducer={globalReducer}>
        <Header />
      <YourComponents />
    </PerfContextProvider>
  );
}

// Context Consumer
import { useUserContext } from './store';

function Header() {
  // same as: const [userInfo, dispatch] = usePerfContext<IState, IAction, 'userInfo'>('userInfo')
  const [userInfo, dispatch] = useUserContext("userInfo");

  const { name, age } = userInfo || {};
  renderCount++;
  const addAge = () => {
    dispatch({
      type: ActionType.SET_USER_INFO,
      payload: { name: "AJ", age: Number(age) + 1 }
    });
  };

  return (
    <div className={classPrefix}>
      <div>{classPrefix}</div>
      <div>用户名:{name}</div>
      <div>年龄:{age}</div>
      <button onClick={addAge}>年龄增长一岁</button>
      <div>renderCount: {renderCount}</div>
    </div>
  );
}