feature-toggle
feature-toggle copied to clipboard
A painless feature toggle system in JavaScript. Decouple development and deployment.
In order to increase usability, we should add typings.
There is case for bug: get parameter `foo=:%№:%"` with invalid characters, this is cause crash
Has anyone tried unit test a file that imports feature-toggle? I'm having a problem only when I run the tests: **Error: Cannot find module 'feature-toggle'**
E.g.: ``` "register-link": { "isEnabled": true, "description": "Display a link on the profile page to allow users to register." } ```
Would be nice if features could declare dependency on other features so that they can't be toggled on without the required feature also toggled on.
Ability to group features together into a list that can be toggled on/off all at once. Useful for marketing "releases" even with a CI SaaS product, or grouping together interdependent...