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 🙏

© 2024 – Pkg Stats / Ryan Hefner

run-effect

v0.1.0

Published

Declaratively run side effects only when dependencies change. Usable in any JavaScript code (but inspired by React's useEffect hook).

Downloads

6

Readme

run-effect

npm tested with jest

Declaratively run side effects only when dependencies change. Usable in any JavaScript code.

Currently runs effect functions syncronously.

Install

npm install --save run-effect

Usage

runEffect(
	effectId: any,
	dependencies: any[],
	effect: Function,
	comparator: ?Function
);

runEffect takes either 3 or 4 arguments:

  • effectId gives an identity to the effect that will be run. This should be unique across your whole program. It can be type - a string, Symbol, or even an object reference. Just make sure the value is stable, or the effect will always run and a memory leak will be created.
  • dependencies is an array of values that your effect relies on. The effect will always be run the first time, but on subsequent calls the elements of the given array will be compared to the values given previously and the effect will only be run if there are any differences.
  • effect a function contain the actual effects to be executed.
  • comparitor [optional] a function with the following signature: (prevDependencies, dependencies) => Boolean used to compare previous and current dependencies. Return true to avoid running the effect (no change) or false to indicate a change and run the effect. Defaults to a shallow array comparison.

Examples

Log two values anytime either of them have changed:

runEffect('effect-name', [value1, value2], () => {
  console.log(value1, value2);
});

Respond to changes in browser width, but ignore any changes to height:

window.addEventListener('resize', () => {
	runEffect('resize', [window.innerWidth], handleWidthChange);
});

Improvements

  • Support running delayed effects, e.g. runEffect.raf, runEffect.timeout, runEffect.microTask. These should run only the latest effect at the scheduled time, not simply defer all effects (that's easy in user land).
  • Support returning cleanup function from effects. Should be called anytime an effect is run after an effect with the cleanup function ran.
  • Provide dev mode warnings if same identifier is reused across multiple call sites? Not sure if this is even something desireable in all cases.
  • TypeScript types

This library is not a replacement for throttling/debouncing helpers or memoization helpers.

Credit

React's useEffect hook inspired me to envision how the same model for controlling imperative syncronization (or other side effects) in React can be applied to arbitrary JavaScript programs.