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

@dh-analysis/state

v2.1.1

Published

analysis state

Downloads

87

Readme

@dh-analysis/state

Readme in Czech (Readme v Češtině)

A tool for analyzing the state of variables. Analyze objects, arrays, and their internal parts to see if they share the same memory address.

Method register

Registering a variable for analysis.

use :

import Analysis from "@dh-analysis/state";

const analysis = new Analysis(); // or new Analysis(ownReporter);
const variable = {...};
analysis.register(variable, "variable");
...

Metoda report

Display analysis results.

use :

import Analysis from "@dh-analysis/state";

const analysis = new Analysis(); // or new Analysis(ownReporter);
const variable = {...};
...
analysis.register(variable, "variable");
analysis.report(); // displays the analysis

By default, the report is displayed using (console.log): a list of duplicate addresses and their current paths in the analyzed variable. The default report can be replaced by your own report, which you insert into the constructor.


Example of use

const analysis = new Analysis(); // or new Analysis(ownReporter);
const address = { street: "Street 123" };
const age = { age: 12 };
const user = {
  name: "arthur",
  aaa: { newAddress: address },
  bbb: { newAge: age },
  ccc: { oldAddress: address },
  ddd: { oldAge: age },
};
analysis.register(user, "user");
analysis.report(); // displays the analysis

metoda report : console.log - výstup

group : 0
 - user/ccc/oldAddress
 - user/aaa/newAddress

group : 1
 - user/ddd/oldAge
 - user/bbb/newAge

The variable user has 2 groups of duplicates. Marked here as group 0 and group 1. For each duplicate, the depth path in the object to that duplicate location is displayed.

Use your own report

Use the bound (method bind) local duplicate variables - storeGroup (returns the getStoreGroup method) and storeSKeys (returns the getStoreSKeys method) - to create your own report.

storeSKeys: list of key ids. Each key has a duplicate group identifier value.

Example storeSKeys :

{
  sKey1: group1,
  sKey5: group1,
  sKey7: group2
}

storeGroup: list of group ids. For each group id, the value is a list of paths to the same duplicate object or field.

Example storeGroup :

{
  group1: {
    sKey1: pathA/pathB/pathC,
    sKey5: pathF/pathG/pathH
  },
  group2: {
    sKey7: pathX/pathY/pathZ
  }
}

Example of a default report to create your own report

let defaultReporter = function () {
  const groups = this.duplicates.getStoreGroup();
  for (const propsG in groups) {
    const group = groups[propsG];
    let paths = [];
    for (const propsK in group) {
      const path = group[propsK];
      paths.push(path);
    }
    paths = paths.sort();
    console.log(`group : ${propsG}`);
    paths.forEach((path) => {
      console.log(` - ${path}`);
    });
    console.log();
  }
};

export default defaultReporter;