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

@muselesscreator/strict-dict

v0.1.0

Published

Trustworthy key-stores for Javascript

Downloads

43

Readme

strict-dict

Trust-worthy key-stores for Javascript.

The purpose of this library is to provide a simple facility for catching a specific category of bug as soon as it happens in the code: reading an object whose keys you trust, and mis-typing a key. In Javascript, this results in an undefined value, which is fine in some cases, but in others where you rely on that value being present, it is valuable to be able to actively catch these errors early, rather than 4-8 steps down the line where they start causing problems.

Utilities

StrictDict, useStrictDict- Strict dictionary

Defines object that complain when called with invalid keys. useful for when using defined modules, where you want to treat invalid keys as an error behavior (such as when using an object as a key-store). Primarily, this is a method to avoid using "magic strings" in javascript code and tests. An optional config object can be passed to control the behavior in a given run environment.

Usage

Wrap an object in StrictDict, and it will raise an error if called with invalid keys.

const selectors = StrictDict({
  validSelector1: () => ({}),
  validSelector2: () => ({}),
});
const selector = selectors.invalidSelector; // raises an error

And now with custom behavior in production environment (default in all others)

const selectors = StrictDict({
  validSelector1: () => ({}),
  validSelector2: () => ({}),
}, {
  production: ({ target, key }) => {},
});
const selector = selectors.invalidSelector; // raises custom error in production environment

useStrictDict is a hook that provides the config object based on a top-level context provider (StrictContext)

const App = () => (
  <StrictContext.Provider value={{
    production: ({ target, key }) => {},
  }}>
    <MyApp />
  </StrictContext.Provider>
);
const MyApp = () => {
  const selectors = useStrictDict()({
    validSelector1: () => ({}),
    validSelector2: () => ({}),
  });
  const selector = selectors.invalidSelector; // raises custom error in production environment
  ...
}

keyStore and useKeyStore- Strict Dictionary of keys from a given object.

use keyStore to quickly grab the keys from an object or StrictDict as a StrictDict themselves.

Usage

const selectorKeys = keyStore(selectors);
selectorKeys.validSelector1; // 'validSelector1';
selectorKeys.invalidSelector; // raises an error;

useKeyStore is a hook that provides the config object based on a top-level context provider (StrictContext)

const App = () => (
  <StrictContext.Provider value={{
    production: ({ target, key }) => {},
  }}>
    <MyApp />
  </StrictContext.Provider>
);
const MyApp = () => {
  const selectors = useKeyStore()({
    validSelector1: () => ({}),
    validSelector2: () => ({}),
  });
  const selector = selectors.invalidSelector; // raises custom error in production environment
  ...
}

TypeScript considerations

When using TypeScript, you can type these as Record<string, targetType> for easy access during tests.

API

API documentation available at https://muselesscreator.github.io/strict-dict/