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

@crispcode/pushstore

v1.1.0

Published

A store library with push notification on changes

Downloads

9

Readme

PushStore

A store library with push notification on changes. Works as a mix of synchronous data storage and events.

It gives the user the ability to be notified on specific changes done to the stored data via listeners.

Installation

    npm install @crispcode/pushstore

How to use

A basic example would look like this:

    import { store } from '@crispcode/pushstore'
    // You can also use:
    // const store = require( '@crispcode/pushstore' )

    store.set( 'key1', 'value1' )

    store.get( 'key1' ) // Will return 'value1'
    store.get() // Will return an object like: { key1: 'value1' }

Using a deep tree:

    import { store } from '@crispcode/pushstore'
    // You can also use:
    // const store = require( '@crispcode/pushstore' )

    store.set( 'key1', 'value1' )
    store.set( 'key2.key21', 'value21' )
    store.set( 'key2.key22', 'value22' )

    store.get( 'key2.key21' ) // Will return 'value21'
    store.get() // Will return an object like: { key1: 'value1', key2: { key21: 'value21', key22: 'value22' } }
    store.get( 'key2' ) // Will return an object like: { key21: 'value21', key22: 'value22' }

Using a listener:

    import { store } from '@crispcode/pushstore'
    // You can also use:
    // const store = require( '@crispcode/pushstore' )

    store.set( 'key1', 'value1' )
    store.set( 'key2.key21', 'value21' )
    store.set( 'key2.key22', 'value22' )
    let _unregister1 = store.on( 'key2.key21', ( value ) => {
        console.log( value ) // Will return 'new value'
    } )
    store.set( 'key2.key21', 'new value' )
    _unregister1() // This will unregister a listener

    // You can also get rid of concurency by using setting the immediate parameter to true when binding the listener
    store.set( 'foo', 'bar' )
    let _unregister2 = store.on( 'foo', ( value ) => {
        console.log( value ) // This will return 'bar' on first call, and 'bar2' on second call
    }, true ) // This will call the listener immediatly upon binding with the current value
    store.set( 'foo', 'bar2' )
    _unregister2() // This will unregister a listener

    // When a property changes, all its children and parent listeners will be triggered
    let _unregister1 = store.on( 'key1', ( value ) => {
        console.log( value ) // Will return 'new value'
    } )
    let _unregister2 = store.on( 'key1.key11', ( value ) => {
        console.log( value ) // Will return 'new value'
    } )
    let _unregister3 = store.on( 'key1.key11.key111', ( value ) => {
        console.log( value ) // Will return 'new value'
    } )

    store.set('key1.key11', 'foo' )

    _unregister1() // This will unregister a listener
    _unregister2() // This will unregister a listener
    _unregister3() // This will unregister a listener

Details & Caveats:

  • Be careful when working with references instead of values. If an object is stored, and one of its subproperties is changed by other means then store.set(), the listeners will not be triggered. To make sure they are triggered, set the object again in pushstore.
  • However if you have a handler on a subproperty, and its parent object is changed via pushstore.set() the subproperty handler will be called with the new subvalue
  • Pushstore instance is global in the curent context, out of the box. But you can create a new instance private of pushstore with default values by calling js pushstore.create( defaults ) . If no argument is specified the new instance will be empty
  • Always remember to unsubscribe your listeners when they are not needed anymore. When a listener is bound, a function is returned by pushstate.on(). Calling this function will unregister the listener.
  • You can have multiple listeners bound to one property.