Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

run-effect

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

run-effect

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

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 13 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc