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 🙏

© 2025 – Pkg Stats / Ryan Hefner

simple-feature-toggle

v1.0.1

Published

A simple library allowing you to hide code implementation behind a feature-toggle flag. Allows for nested features and callbacks.

Readme

USAGE

var featureToggle = require("simple-feature-toggle");

featureToggle.set({
  root: {
    child: {
      flag1: false
    }
  }
});

if(featureToggle.isEnabled("root.child.flag1")) {
  console.log("root.child.feature1 is enabled");
}
else {
  console.log("root.child.feature1 is disabled");
}

API

featureToggle.set(Object flagset)

Load or update an existing flag set. The value should be an object with each leaf being either a boolean or function that when evaluate returns a boolean.

Calling the function multiple time will merge the flag set using _.merge

featureToggle.reset()

Resets the flag set to an empty set. Useful when you want to replace the current set with a new one, and not update it.

featureToggle.isEnabled(String, [param1, param2, ....])

Checks the flag set against an selector supplied as a dot.string.notation. If the expected value is a function, you can pass additional parameters which will be then passed to the function at runtime.

featureToggle.isDisabled(String, [param1, param2, ...])

Returns the opposite of isEnabled

featureToggle.data

Object holding the current flag set. Please use set() and reset() to alter.

featureToggle.assumeEnabledByDefault

The value to be returned when the queries key (using isEnabled, isDisabled) fails to find the value in the flag set. By default true allowing the lib to be used to disable functionality rather than enable it.

featureToggle.resolveNested

Decides if the app can query for whole flag objects as valid isEnabled and isDisabled response. This can be useful to lock/unlock a whole group of features and each individual one later on.

featureToggle.resolveNested()

If featureToggle.resolveNested is enabled, decides on value to be returned when resolving with an object. Returns featureToggle.assumeEnabledByDefault by default.