1.0.2 • Published 6 years ago

feature-fling v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

Feature Fling JS

A solution is finally here to handle all of your feature flags. Update flags in real time and see them reflected in your code in a matter of seconds.

Getting Started

This is for node applications. The checkFlag will be all that you need to retrieve the flag status.

Prerequisites

You will need to have an account at www.featurefling.com. You alsi also need your organisation Key, your authentication Key and the project Id.

Installing

Install via npm:

npm install --save feature-fling

Just import from feature-fling and instantiate it.

import FeatureFling from 'feature-fling'

let fling = new FeatureFling('orgKey', 'authKey', 'projectId')

let flagEnabled = fling.checkFlag('flagone')