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

reherit

v1.0.1

Published

Reactive state management with prototypal inheritance

Downloads

12

Readme

Reherit

Reactive state management with prototypal inheritance

About

Reherit is a reactive state manager intended to be used with interactive interfaces made up of many seperate components. Each components state (called store) is inherited from it's parent using prototypal inheritance.

Stores can be accessed and manipulated by any component in the tree. Whenever a store is changed, an update is issued and subscribers are notified.

Features

  • small API: you'll get by only learning three functions
  • it's tiny: just over 1kb, you'll barely know it's there
  • no tooling: no compilation required, works out of the box
  • runs anywhere: anywhere ES modules are supported, that is

Usage

import { use, store, watch } from 'reherit'

var dog = use(Dog, { name: 'Maja' }).resolve(console.log)

console.log(dog)

dog.pet()

function Dog () {
  var [name] = store('name')
  var [mood, setMood] = store('mood', 'sad')

  watch('mood', function (mood) {
    console.log(`${name} is ${mood}`)
  })

  return { name, mood, pet: () => setMood('happy') }
}

Running the above example will print the following to the console:

-> Maja is sad
-> { name: 'Maja', mood: 'sad' }
-> Maja is happy
-> { name: 'Maja', mood: 'happy' }

Installation

Reherit is distributed as a ES module and can be installed with your favourite package manager, e.g.:

npm install reherit

It can also be imported from unpkg.com

import { use, store, watch } from 'https://unpkg.com/reherit/dist/index.js'

API

While resolving a component tree, Reherit builds a "stack" of "layers" which reflects the inheritance of stores, one layer inherits from the one before it, and so on. However, there are only three functions you really need to learn to use Reherit.

use(Function, [store, [...args]])

Creates a Layer which can be resolved into the rendered component. Takes a component function as it's first argument followed by an optional store and arguments. The store (if provided) will be assigned onto the inherited store. Arguments are forwarded to the component function. Returns Layer.

store([key, [initialValue]])

Read from component store, optionally providing an initial value if none is set already. Returns a touple (fancy word for array with two values) with the value and a function for updating the value.

If the key being requested is not set to the current component store, it will walk up the prototype chain looking for it. If found on a parent store, that value will be returned and the update function will update that parent value.

If the key is not found in the prototype chain, but an initial value is provided, the initial value will be set to the current component store and the update function will only update the current component.

If no key is provided, the store object will be returned and the update function will assign properties directly to the store.

var [state, setState] = store()
var [value, setValue] = store('key', 'hello')

setState({ key: 'hi' }) // <- These two have the same effect
setValue('hi')          // <-

watch(key, [Function])

Listen for changes to the store. If key is a function the function will be attached as a listener for any changes to the store. Key can also be an array of keys to watch. Listeners are called after the component has rendered and on every update to the given key(s).

The listener may return a function which will be called on the next update of the given key(s) before the component is rendered.

watch('key', function (value) {
  console.log('value is', value)
  return function (value) {
    console.log('value has been updated to', value)
  }
})

Layer

A layer is the container for a component, holding its store, listeners and children.

Layer#resolve([Function])

Call component function, calling any listeners and handling state in the process. Generators and promises returned/yielded from the component function are awaited for and resolved.

If provided, the function passed to resolve will be called on subsequent asynchronous updates.

Layer#assign(store, args)

Update layer internal store and cached arguments without issuing an update.

Layer#update(key, [value])

Update the store with given key/value pair. If no value is provided, the key is assigned onto the store.

Layer#subscribe(key, Function)

Subscribe to updates made to the layer store.

Layer#emit(key, value)

Call all subsribers registered for the given key. The value will be passed to the listeners.

License

MIT