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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-keep

v0.2.0

Published

Higher order component which conditionally remembers previously received props.

Downloads

16

Readme

react-keep

npm version react peer dep version bundle size license

Higher order component which conditionally keeps and passes down previous values of selected props in subsequent renders.

Check out Codesandbox project

example

Motivation

This library is an effect of repeating same pattern multiple times while I was working on React based web applications.

The problem I often encounter is a need to keep current visual state of component after it receives new props which affect its render output. There are situations when data coming from Redux or local state is no longer available and I want to gracefully hide component which just moment ago was displaying data. During hiding animation user can still see immediately disappearing data. It doesn't look good.

One approach could be to somehow synchronize visual component with source of data. But doing it this way, we are making source of data aware of presentation layer.

My approach is about wrapping visual component with hoc which remembers how props looked before they became unavailable.

Installation

npm

npm install --save react-keep

yarn

yarn add react-keep

API

withKeep(WrappedComponent, propsToKeep, shouldUseKeptProps)

  • WrappedComponent - function - React component of any kind which receives kept props

  • propsToKeep - string[] - list of props names. Example: ["name", "description"]

  • shouldUseKeptProps - (props: object) => boolean

    The one and only argument is the most recent props object passed to enhanced component. Function should return truthy value if wrapped component should receive remembered props. Falsy value should be returned otherwise. Example: ({message}) => message === undefined

Returned value: React component

Notes:

Returned component remembers the most recent values of props defined in propsToKeep as long as shouldUseKeptProps returns falsy value. When shouldUseKeptProps returns truthy value, remembered props are passed down to WrappedComponent along with other props untouched.

If shouldUseKeptProps returns truthy since very beginning, all original props are passed down as there was nothing before to remember.

If propsToKeep is not an array or shouldUseKeptProps is not a function, withKeep returns original WrappedComponent so no props are kept.

How to use it

  1. Create enhanced component
import withKeep from 'react-keep';

const CounterWithKeep = withKeep(
  Counter,
  ["number"],
  ({ number }) => number === 0;
);
  1. Pass first set of props
<CounterWithKeep visible={true} number={1} />
  1. Pass new set of props
<CounterWithKeep visible={false} number={0} />

As a result, Counter instance will disappear and "1" will still be displayed.

Example

Go to codesandbox to play with examples.