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

storablejs

v0.0.20

Published

A javascript datastore built using RxJS Observables

Downloads

6

Readme

Storable

Storable is an Observable based data store. The store is queried using keyPaths with each query returning an Observable.

Storable also comes with a way to step through store state as it changed, allowing the developer to pause state, rewind and fast forward, and even drop any queued state that accumulated when the state was paused.

To Install

npm install storeablejs

Usage

import Store from "storablejs/Store";

const store = new Store();

Querying for data

Single key path

store.query("foo", "bar").forEach((data) => {
    // data:
    // {
    //     bar: <value>
    // }
});

Multiple key paths

store.query(
    ["foo", "bar"],
    ["baz", "hum"]
).forEach((data) => {
    // data:
    // {
    //     bar: <value>,
    //     hum: <value>
    // }
});

Aliasing key paths

store.query(
    ["foo", "bar", {alias: "bar1"}],
    ["baz", "bar", {alias: "bar2"}]
).forEach((data) => {
    // data:
    // {
    //     bar1: <value>,
    //     bar2: <value>
    // }
})

Seeding data

const seedFn = (writeResult) => {
    writeResult("foo");
};

store.query("foo", "bar", {ensure: seedFn});

Seeding data asynchronously

Useful if the seed data comes from the server

const fetchData = (writeResult) => {
    performServerCall().then(writeResult);
}

store.query("foo", "bar", {ensure: fetchData});

Writing Data

store.emit({
    foo: {
        bar: "baz"
    }
});
// NOTE: data can be deeply nested, even if the keys don't yet exist in the
// Inventory. The keys are created as the data is written.

Using the Manager to step through state

Setup

import Inventory from "storablejs/Inventory";
import Manager   from "storablejs/Manager";
import Store     from "storablejs/Store";

const inventory = new Inventory();
const manager = new Manager(inventory);
const store = new Store(inventory, manager);

Time-travelling through Store state

manager.pause();            // Prevent new Store emmisions from changing state.
                            // New state emmissions from the Store are queued.

manager.resume();           // Allows the Store to function as usual. Also, any
                            // queued state will be played.

manager.rewind(n);          // Go back n steps if possible. This will also pause
                            // the manager.

manager.fastForward(n);     // Go forward n steps if possible. This will also
                            // pause the manager.

manager.goto(n);            // Go to a specific state, where 'n' represents the
                            // index of that store state relative to the first
                            // state.

manager.commit();           // Removes any queued state.

Viewing the contents of the Manager

manager.updates.forEach((updates) => {
    const {
        currentLedgerIndex, // The index of current state.
        isTimeTravelling,   // Indicates of the manager is paused or not.
        transactions,       // An array of all emitted states.
    } = updates;
};)

Grouping Store methods

It is often useful to group methods that deal with similar slices of data together into a single module. As a convenience, a Clerk can be used to help combine multiple modules together.

import Store from "storablejs/Store";
import Clerk from "storablejs/Clerk";

import storeMethods1 from "./storeMethods1";
import storeMethods2 from "./storeMethods2";

const store = new Store();
const clerk = new Clerk(store, {
    ...storeMethods1,
    ...storeMethods2,
});

clerk.someMethod();

The Clerk itself has the ability to emit on the Store. When creating a module for the Clerk to consume, assume that a method called emit exists as a property of the module.

The module itself should just export a dictionary of methods. Ex:

// storeMethods1.js

export default {
    someMethod() {
        this.emit({foo: "bar"});
    },

    someOtherMethod() {
        this.emit(await doSomethingAsyc());
    },
}