@caedes/react-feature-flipping
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

React Feature Flipping

Contributor Covenant NPM Version BundlePhobia

Foreword

The @caedes/react-feature-flipping library is a turnkey tool for React developers who want to improve their products while simplifying and securing their application code deployments.

Installation

yarn add @caedes/react-feature-flipping

Usage

const features = ["search-engine", "product-zoom", "user-opinion"];

const App = () => {
  return (
    <FeatureFlipping.Provider features={features}>
      <HomeScreen />
    </FeatureFlipping.Provider>
  );
};

const HomeScreen = () => {
  return (
    <main>
      <h1>Home</h1>
      <FeatureFlipping.On feature="search-engine">
        <input type="search" id="product-search" name="q" />
        <button>Search</button>
      </FeatureFlipping.On>
    </main>
  );
};

Explanations

This library provides an easy-to-use solution for managing features, experiments, and parameters of your applications without having to modify the source code. Developers can easily enable or disable features in real-time, control how their application behaves, and perform A/B tests to determine user preferences and improve the user experience.

In summary, the Feature Flipping is a powerful tool for Agile organizations that seek to improve their products while securing their code deployments. With this library, developers can easily manage their application features and improve the user experience without the need to modify the source code.

Contribution

Install the repository:

git clone https://github.com/caedes/react-feature-flipping.git

Then the dependencies:

yarn

Run the test suite before commiting:

yarn test

And offer your PR! 🚀

Readme

Keywords

none

Package Sidebar

Install

npm i @caedes/react-feature-flipping

Weekly Downloads

6

Version

2.0.1

License

MIT

Unpacked Size

11.3 kB

Total Files

9

Last publish

Collaborators

  • caedes