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

stk

v0.2.10

Published

state management toolkit

Downloads

21

Readme

State management toolkit

Basics

.subscribe(Observer)

.subscribe(onNext, onError, onComplete) subscribe for state updates

example

stk.store(10).subscribe(state => console.log(state));
stk.store(20).subscribe({
    next(state) {
        console.log(state);
    }
});

.dispatch(Event) dispatches an event (produced with an eventCreator)

const sum = (x, y) => x + y;
const store = stk.store(10);
store.dispatch({
    update: 20,
    reduce: sum
});
store.subscribe(state => console.log(state)); // 10, 30

.createEvent(fnReducer) given a reducer returns an event creator that produces events (events can't have side effects)

const sum = (x, y) => x + y;
const store = stk.store(10);
const numberEvent = store.createEvent(sum);
numberEvent(20)
store.subscribe(state => console.log(state)); // 10, 30

.createCommand(fnExecutor) given an executor function returns a command creator that produces commands (that perform side effects)

.plug(Observable, reducer) 'plugs' an observable to the store, so that every value from the observable results into an event (with the given reducer)

Advanced

.view(project) given a project function (project(Events[], initialState)) produces a view that is a way to observe events flowing in the store

._eventLog(Observer) subscribes an Observer to the raw event log flowing through the store

Flush strategies:

to avoid array overflowing and control computational cost of project stores are created with flush strategies. A flush strategy specifies a policy for transitioning form an array of events and an initial state to a new initial state (which includes some of the events) and a reduced events array. immediateFlushStrategy flush every event (warning: transactions will not work) neverFlushStrategy no flush at all (good for the cases with a low events number - e.g. less than 10 mln) count100kFlushStrategy flush upon reaching 100 000 events (default for stk)

store(initialState[, flushStrategy]) // flush strategy is specified in a store constructor as an optional 2nd argument built-in strategies can be found under stk.flushStrategies path. It is possible to specify custom flush strategy under the following API:

function customImmediateFlushStrategy(projectFunction){
    return function (eventsArray, initialState) {
        const newEventsArray = [];
        const newInitialState = projectFunction(eventsArray, initialState);
        return [newEventsArray, newInitialState];
    };
}

Redux DevTools Extension

STK works with Redux Devtools Extension:

  • Install the tools
  • Connect one of the stores to the DevTools:
const initial = 0;
const store = stk.store(initial);
stk.devtools.addStore(store, initial);