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

react-modular-feature-flags

v1.0.1

Published

Modular feature flags management for modern React apps

Downloads

19

Readme

react-modular-feature-flags

NPM version

Table of contents

About

react-modular-feature-flags is a powerful library designed to manage the state of feature flags in your React applications. This library allows seamless integration of multiple channels to activate and deactivate feature flags, providing a highly flexible and modular approach to feature management.

Key features include:

  • Singleton Class: Ensures a single source of truth for all your feature flags.
  • Multiple Channels: Connect various channels such as query params, custom events, cookies, remote flaggers, and more to control feature flags.
  • State Resolution: Automatically resolves the state of each feature flag by processing inputs from different channels based on their priority.
  • Custom Channels: Create and integrate your custom channels to manage feature flags as per your unique requirements.
  • Real-Time Access: Access the current state of any feature flag at any moment using our hook useFeatureFlag.
  • TypeScript Support: Fully typed with TypeScript for enhanced developer experience and code safety.

Diagram

[!TIP]
You can see our sample project here.

Installation

#Yarn
yarn add react-modular-feature-flags

#NPM
npm install react-modular-feature-flags

Once the package is installed, you can import the library in your app.

import featureFlags from "react-modular-feature-flags";

Initialize the library. You can set default flags at this point:

featureFlags.init({
  defaultFeatureFlags: { foo: true },
});

Next you must add the different channels you want to support. You can add as many channels as you need.

featureFlags.initChannel({ priority: 1 }, new MyChannel());

[!TIP] Learn more about the available channels or how to create your own custom channel.

Finally, you can access the value of the feature flag within your components using the following hook:

const flagValue = useFeatureFlag("foo");

FeatureFlags API

Methods

| Prop | Type | Description | | ------------- | ---------------------------------------------------- | -------------------------------------------------------------------------------------------- | | init | ({defaultProps?: Record<string, boolean>}) => void | Initializes the library | | initChannel | ({priority: number}, Channel) => void | Initializes a channel with a specific priority. Higher priorities overwrite lower priorities | | getFlags | () => Record<string, boolean> | Returns the value of all computed flags | | getFlag | (flag:String) => boolean | Returns the value of a specific flag |

Channels

A channel is a mechanism through which feature flags can be activated or deactivated. Each channel listens to specific sources and communicates the state of these flags to the library. Channels allow for dynamic and flexible control over feature flags, ensuring that the application's features can be toggled based on various contexts and conditions.

Cookies

[!NOTE]
The Cookies channel leverages browser cookies to store and retrieve feature flag states. This is particularly useful for maintaining feature state across different sessions and ensuring a consistent user experience.

How to trigger?

document.cookie = "featureFlags=bar,foo=false,baz";

API

| Prop | Type | Required | Default value | Description | | ------ | -------- | -------- | -------------- | -------------------------- | | key | string | false | featureFlags | Sets the key of the cookie | | root | Window | false | window | Sets the global object |

Query Params

[!NOTE]
The Query Params channel enables you to control feature flags through URL parameters. By appending specific parameters to the URL, you can easily toggle features for debugging or testing purposes without altering the codebase.

How to trigger?

my-website.com?featureFlags=bar,foo=false,baz

API

| Prop | Type | Required | Default value | Description | | ------ | -------- | -------- | -------------- | ------------------------------- | | key | string | false | featureFlags | Sets the key of the query param | | root | Window | false | window | Sets the global object |

Custom event

[!NOTE]
The Custom Events channel allows feature flags to be controlled via events dispatched within your application. This provides a dynamic way to manage feature states based on user interactions or other custom triggers.

How to trigger?

window.dispatchEvent(
  new CustomEvent("flags:update", {
    detail: { bar: true, baz: true, foo: false },
  })
);

API

| Prop | Type | Required | Default value | Description | | --------- | -------------- | -------- | ------------- | ----------------------------- | | options | EventOptions | false | - | Sets the options of the event | | root | Window | false | window | Sets the global object |

EventOptions

| Prop | Type | Required | Default value | Description | | ----------- | ------------ | -------- | -------------- | --------------------------------------- | | eventName | string | false | flags:update | Sets the key of the event | | onChange | () => void | false | - | Callback invoked when event is executed |

Configcat

[!NOTE]
The ConfigCat channel integrates with the ConfigCat service to manage feature flags remotely. This channel allows you to update feature flags in real-time from a centralized dashboard, offering a powerful way to control feature rollout across different environments and user segments.

| Prop | Type | Required | Default value | Description | | ----------- | ----------- | -------- | ------------- | ----------------- | | configCat | ConfigCat | true | - | ConfigCat library | | options | Options | true | - | Sets the options |

Options

| Prop | Type | Required | Default value | Description | | --------------------- | ------------------------- | -------- | ------------- | -------------------------------- | | SDKKey | string | true | - | SDKKey of your ConfigCat project | | defaultFlags | Record<string, boolean> | false | {} | Default feature flags | | pollIntervalSeconds | number | false | 150 | Polling interval |

Custom channel

[!NOTE]
If you need to, you can create your own custom channels connected to the services your project requires.

In this simple example we create a channel that turns on a flag when passing a specific number of ms.

// my-custom-channel.class.ts

import {
  BaseChannel,
  FeatureFlagsChannel,
  Flags,
} from "react-modular-feature-flags";

interface MyCustomChannelProps {
  key: string;
  delay: number;
}

export default class MyCustomChannel
  extends BaseChannel
  implements FeatureFlagsChannel
{
  key: string;
  delay: number;
  flags: Flags;

  constructor(props: MyCustomChannelProps) {
    super();
    this.key = props.key;
    this.delay = props.delay;
    this.flags = {};
  }

  init() {
    setTimeout(() => {
      this.flags = {
        ...this.flags,
        [this.key]: true,
      };
      this.update(this.flags);
    }, this.delay);
  }

  getFlags() {
    return this.flags;
  }
}
// App.ts

...

featureFlags.initChannel({ priority: 1 }, new MyCustomChannel({key:"bar", delay: 2000}));