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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@diax-js/state

v0.3.0

Published

The `state` package is base implementation of reactive state primitive. Base abstraction are `signals` witch allows for glitch free state propagation. This mechanism is widely adopted by frontend framework, because of the convenience of usage.

Readme

@diax-js/state

The state package is base implementation of reactive state primitive. Base abstraction are signals witch allows for glitch free state propagation. This mechanism is widely adopted by frontend framework, because of the convenience of usage.

In diax-js signals are implemented by following primitives:

  • signal its represents value that can be changed over the time
  • computed it is signal which value, depends on other signal's value
  • attribute it's value depends on observed attribute in custom element definition
  • effect it is a consumer of the value change in signal

In diax-js state change propagation has defined order. Firstly the state of the signal is updated. Then this updated is propagated to it dependencies like computed, effect or rendering-element. First all computed values are calculated synchronously and propagated as well. In this phase effects and renders are queued. After computation phase happen effects are invoked. It may happen that invocation of effect will update any signal causing computation and scheduling of effects and renders again. This process will be repeated until all the state is propagated. As a final step rendering happen. Where all queued invocation of render take place. This step must not cause other rendering.

This is process is called state derivation and can be visualized as fallow:

    signal -> computed

    or

    signal -> effect

    or

    signal -> render

    or

    signal -> computed -> effect -> computed -> render

    or

    signal -> computed -> effect -> computed -> effect -> render

    ...and so on

How to use

Type in your console:

npm i @diax-js/state

    import { RenderingElement } from '@diax-js/rendering-element'
    import { html } from '@diax/rendering-element/uhtml';
    import { signal, attribute, effect, computed } from '@diax/state';
    import { attachListener } from '@diax/context/host';

    @RenderingElement('my-element')
    class MyRenderingElement {
        static get observedAttributes() {
            return ['data-nick'];
        }

        private name = signal('My Rendering Element');
        private nick = attribute('data-nick');
        private nameAndNick = computed(() => `Name is @{this.name.value} and nick is #{this.nick.value}`)

        constructor() {
            effect(() => console.log(this.nick.value));
            attachEventLister('dblclick', () => this.nick.setValue('Attribute signal'));
        }

        render() {
            return html`${this.nameAndNick.value}`
        }
    }