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

objectionable

v0.2.1

Published

Deep Proxy for objects to help track down rogue mutators

Downloads

2

Readme

Objectionable

When something is mutating your data, and you don't know what it is, find it objectionable.

This will setup a deep proxy that will alert you whenever an object is mutated.

let objected = objectionable([{ a: [0, { b: [{ c: 1 }] }] }]);
objected[0].a[1].b[0].c = 2;
// Console.log >> "Set: /0/a/1/b/0/c to 2";

Check tests to see all covered cases. Some highlights-

  • new key added
  • editing existing value
  • deep nesting, including mixed arrays and objects
  • new value added to array
  • length changed on array (implicitly and explicitly)

Get started

  1. Install:
npm install objectionable
pnpm add objectionable
yarn add objectionable
  1. Import into your project:
import objectionable from "objectionable";
  1. Wrap any assignments to the value you want to track with objectionable.
let observed = objectionable(newValue);

Any mutations to observed will be reported.

  1. Fix the issue, and uninstall objectionable. This strategy may have unintended consequences, so it's not recommended to use it long term.

Features:

  1. No dependencies
  2. Designed for temporary troubleshooting
  3. 100% test coverage
  4. Handles deeply nested array and objects
  5. Helpful for troubleshooting React, Vue and Svelte reactivity issues.

Options:

setValue - Boolean, defaults to true

If true, object setting acts as normal. If false, the value won't change, and an error will be thrown on every set.

reporter - callback, defaults to console.log of Set: ${path} to ${value}

Callback receives the following arguments-

  • object- the entire observed object
  • prop- the specific key being set
  • path- a / separated path to the key
  • value- the value being set

Example callback, which would throw an error when a specific key is changed-

const callback: ObjectionableReporterCallback = function (
  object,
  property,
  path,
  value
) {
  if (path === "deep/path/set") {
    throw new Error(`${path} set to ${value}`);
  }
};

Other options

  • Roll your own recursive proxy.
    • Certainly less overhead, but there are fair number of edge cases you may miss. For example, most StackOverflow solutions don't handle arrays.
  • https://github.com/samvv/js-proxy-deep or https://github.com/qiwi/deep-proxy
    • Allows for more use cases of proxies, but requires more setup to solve this particular use.

Contributing

See CONTRIBUTING.md for more details.