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

@watchmen/configr

v3.0.2

Published

config helper

Downloads

50

Readme

node-configr

config helper

XO code style styled with prettier build status npm (scoped)

see tests for examples

usage

  • npm i @watchmen/configr
  • import {...} from '@watchmen/configr'

configuration sources

CONFIGR_SOURCES={source},{source},...

where a source can be a url or a relative file path

when processing a source, the file will b a template which could result in multiple files being processed

example: ./config/values.yaml

values.yaml becomes the template which will be processed as a sequence of files, if the files exist, and be processed sequentially where each subsequent file has precedence.

the sequence is based on the following:

  1. environment
    1. specified in a variable named ENVIRONMENT
      1. of form [{modifier}-]{base}
        1. optional {modifier} could be anything like foo
        2. {base} would be one of discrete set of base environments like [dev, test, prod]
  2. git branch
    1. specified in variable named GITHUB_REF_NAME
      1. of form {trunk}[-{modifier}]
      2. {trunk} would be something like main
      3. optional {modifier} coudld be anything like foo
  3. examples
    1. (no modifiers): environment=dev, branch=main
      1. sequence
        1. values.yaml
        2. values.dev.yaml
    2. (with modifiers): environment=foo-dev, branch=main-bar
      1. sequence
        1. values.yaml
        2. values.bar.yaml
        3. values.foo.yaml
        4. values.dev.yaml
        5. values.foo-dev.yaml

configuration environment variables

every element can be specified/overridden with an environment variable

let's say that after parsing of sources that the resultant structure looks like the following:

# discrete val
#
root:
  key-1: val-1
  # list val
  #
  key-2:
    - val-2-1
    - val-2-2
  # map val
  #
  key-3:
    key-3-1: val-3-1
    key-3-2: val-3-2
  1. root.key-1 can be specified with an environment-variable ROOT__KEY_1 = val-1-x
  2. root.key-2 can be specified with an env-var like ROOT__KEY_2 = [val-2-1-x, val-2-2-x]
  3. root.key-3.key-3-1 can be specified with an env-var like ROOT__KEY_3__KEY_3_1 = val-3-2-x

note the use of a double-underscore __ to imply a nested value strategy lifted from the dynaconf python based configuration package

development

  1. git clone {repo name}
  2. cd {repo name}
  3. npm i
  4. npm test