Toggle It
This is a wrapper around the toggle-it-core.
The main purpose of this wrapper is to integrate an API request responsible to fetch the data relative to the feature flags with the core, which checks if a feature is "on" or "off", basically.
For now, the requirements are:
- the fetch function should be a thenable (i.e. has a then method). Most Promise based request libraries should be just fine.
Instalation
yarn add toggle-it
Usage
Simple example usages can be found at the tests file.
TODO
- (DONE)
Make it possible to the user to customize how the JSON can be accessed on the response object. - (DONE)
Support parametrized custom functions with more complex use cases for the flags. - Support non-thenables.