#
Muton
This is the Muton project - a feature toggle tool with support for feature throttling and multivariance testing.
You can engineer the genes of your application by meticulously choose what are the best features and create an organic result. With artificial manipulation, or even by random mutations, you will natural select the best version of your application.
___ ___ _
| \/ | | |
| . . |_ _| |_ ___ _ __
| |\/| | | | | __/ _ \| '_ \
| | | | |_| | || (_) | | | |
\_| |_/\__,_|\__\___/|_| |_|
O o O o O o
| O o | | O o | | O o |
| | O | | | | O | | | | O | |
| o O | | o O | | o O |
o O o O o O
In real life, cells replicate DNA using an enzyme called polymerase. During the process, it checks for replication errors doing proof-reading on the fly. But sometimes a random mutation occur... that's life trying to evolve. This tool works in a similar way: random mutations may occur while processing the instructions to toggle features on and off. That's your application trying to evolve.
Installation
NPM
npm install muton --save
Bower
bower install muton --save
Usage
Muton just decides what features to mutate, activate or deactivate and it doesn't store the features anywhere. You should integrate Muton with code that persists the features per user, like using cookies or other mechanism you prefer.
Basic usage
Currently, you can use Muton as a Node module or an AMD module. To include as an AMD module, please require the muton-amd.min.js
file.
You can use in the following way:
var features = muton.getFeatureMutations(userProperties, featureInstructions);
Where userProperties
is a dictionary containing user properties, something like this:
var userProperties = {
'location' : 'PT',
'age' : '24'
}
And where featureInstructions
is a dictionary of features containing specific instructions, which must follow a specific format. It can be something like this:
var featureInstructions = {
'superCoolFeature' : {
'toggle' : true,
'location' : {
'PT' : {
'toggle' : true
},
'FR' : {
'toggle' : false
}
}
}
}
A Muton valid response would be:
var featureInstructions = {
'superCoolFeature' : true,
'anotherCoolFeature' : false
Instructions format
The instructions must contain one of the following elements: toggle
, throttle
and bucket
and they can be placed behind every property inside the feature object, and even placed directly under the feature object. Muton will look for a path in the instructions and aggregate all of them that matches the user properties. When no matches are found, it will assume the general instructions.
Toggle
The toggle
instruction activates or deactivates toggles. The default value is false and can be overridden by the throttle
and bucket
instructions. The exception to this is when the toggle
instruction is placed directly under the feature object and it's value is set to false. This allows to deactivate a feature completely.
Throttle
The throttle
instruction will activate or deactivate a toggle based on a percentage. In Muton terms, this is called a mutation. For example, you might want to have 50% of your users to have access to a feature and this instruction is perfect for that.
For example, if you want to have 50% of your Portugal users to see a feature but 100% of the users of the remaining countries to see it (except for France), you could do something like:
var featureInstructions = {
'superCoolFeature' : {
'toggle' : true,
'location' : {
'PT' : {
'throttle' : '50%'
},
'FR' : {
'toggle' : false
}
}
}
}
Buckets (A/B testing, multivariant testing)
The bucket
instruction is perfect for A/B testing and it resources to mutations like the throttle
instruction. This instruction can be written like the following:
var featureInstructions = {
'superCoolFeature' : {
'toggle' : true,
'location' : {
'PT' : {
'throttle' : '50%'
},
'FR' : {
'buckets' : ['bigRedButton', 'mediumSizeButton', 'smallButton']
}
}
}
}
The above snippet would allow you to have your France users to access three different buckets for testing, let's say, three different buttons on a form and test which of them your users react best.
A valid response for a french user could be:
var featureInstructions = {
'superCoolFeature' : true,
'superCoolFeature.smallButton' : true
}
Build
grunt clean && grunt
Tests
npm test
Future work
- Support other exports besides Node and AMD
- Adding support for pattern matching inside the feature properties
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Lint and test your code.
Release History
TBD