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

repond

v0.17.5

Published

respond to items state in realtime

Downloads

126

Readme

Repond

Respond fast to item states

State:

  • State is made of of itemTypes (stores) with items with properties

Effects:

  • React to state changes

Hooks

  • Update components with state changes

Effects

How to use

Effects can be made in three main ways

1. Declarative

  • with makeEffects(EffectMap) + initEffectGroups - for static effects that can be started and stopped, thi sis the most common way

  • with makeParamEffects + initParamEffectGroups - for making a group of effects that can differ based on parameters, for example effects that listen to changes from both a parent and a child item, where the parent and child ids can change

  • Note the "id" prop is overwritten for the declarative ways of making effects, since the id is created from the groupName + effect name (+ params for paramEffects)

    2. Imperative

  • with startNewEffect(Effect) - for runtime decided effects, these are good for temporary listeners, like a listener that listens to a child item, and is removed when the child is removed

    3. React

    • with useStoreEffect or useStoreItemEffect - for making effects that are tied to a component, and are removed when the component is removed
    • there are others hooks for getting state like useStore and useStoreItem, which make an effect that returns the state

More

Set state run order

Every setState is queued and runs when the frame runs, Later setStates will overwrite earlier ones, But running setState inside an effect will run it during that step, instead of the next frame So set states can be in a specific order

Step phases

'Step' Effects

  • Run in a loop, until no state changes are made
  • Good for editing the state or updating derived state
  • Runs here if effect.atStepEnd is false

'StepEnd' Effects

  • Run once after all the stepEffects
  • Good for running effects that need to know the final state of that step
  • Runs here if effect.atStepEnd is true