ng2-feature-flag
TypeScript icon, indicating that this package has built-in type declarations

0.0.13 • Public • Published

ng2-feature-flag npm version

Join the chat at https://gitter.im/ng2-feature-flag/Lobby

A 'feature flag' (or Feature Toggle) is the ability to turn features (sub-sections) of your application on/off with some conditions. The Feature that is being wrapped around the tag is not rendered. This module provides 3 possible variables to turn on/off a feature: language, country and userRole. You can use the conditions that you need, and it will map this to the configuration file.

The module was tested with Angular2 RC6.

Please, let me know about if this module is usefull, any feedback is welcome. I.e: new attributes for the conditions. If you are integrating this in your project, I will be very happy to help with that.

Usage

<feature-flag feature="frenchMessage" language="{{browserLang}}">
  <div class="pull-right">
      <img src="http://cromwell-intl.com/travel/athens-to-paris/pictures/france_small.png"/>
    </div>
</feature-flag>
 
 

You can use also: country, userRole and language, this should map against the provided configuration

<feature-flag feature="frenchMessage" language="EN" country="AR" userRole="admin">

configuration (example on a shared module, to reuse the feature flag)

 
// main module
import { FeatureFlagModule } from 'ng2-feature-flag/ng2-feature-flag';
 
// feature flags configuration
import {Features} from './config/features.config';
 
 
@NgModule({
  imports: [FeatureFlagModule],
  declarations: [],
  exports: [ FeatureFlagModule ]
})
export class SharedModule {
  static forRoot(): ModuleWithProviders {
    return {
      ngModule: SharedModule,
      providers: [
       {
          provide: 'featureFlags',
          useValue: Features
        }]
    };
  }
}

features flags config file. I.e.: ./config/features.config

This file maps a feature with it's conditions to be shown

export const Features = {
  "navbar" : {
    "country" : ["AR","BR"],
    "language" : "ES",
    "userRole" : ["user"]
  },
  "frenchMessage" : {
    "language" : "fr"
  }
};

Install from npm

npm install ng2-feature-flag --save

Todos:

  • unit tests
  • build system with gulp
  • implement better change detection strategy

Package Sidebar

Install

npm i ng2-feature-flag

Weekly Downloads

1

Version

0.0.13

License

MIT

Last publish

Collaborators

  • ricardod7i