feature-flipper: A minimally obtrusive feature flag library

[ library, mit, web ] [ Propose Tags ]

A minimally obtrusive feature flag library


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.2.0.1, 0.2.1.2
Dependencies base (>=4.8 && <5), containers, feature-flipper, mtl, text [details]
License MIT
Copyright 2017 Todd Mohney
Author Todd Mohney
Maintainer toddmohney@gmail.com
Revised Revision 1 made by toddmohney at 2017-06-01T12:47:01Z
Category Web
Home page https://github.com/toddmohney/feature-flipper#readme
Bug tracker https://github.com/toddmohney/feature-flipper/issues
Source repo head: git clone https://github.com/toddmohney/feature-flipper
Uploaded by toddmohney at 2017-05-31T18:10:58Z
Distributions
Reverse Dependencies 1 direct, 1 indirect [details]
Executables environment-config
Downloads 2950 total (15 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-05-31 [all 1 reports]

Readme for feature-flipper-0.2.0.0

[back to package description]

flipper

A light-weight library providing an interface for minimally obtrusive feature toggles.

This library provides the main user interface and an in-memory feature flag storage adapter.

Persisted storage adapters (think Postgres, Redis, etc) will be created as separate packages.

This library is heavily inspired by @jnunemaker's work on Ruby's Flipper. Thanks for paving the way!

Installation

Add feature-flipper to your cabal file, then import Control.Flipper into your module.

Usage examples

Roadmap

Add storage adapters

  • TODO: Create Postgres adapter
  • TODO: Create Redis adapter