@deliveroo/determinator
v0.2.0
Published
A distributed and deterministic experimentation and feature flag framework from Deliveroo.
Downloads
13
Maintainers
Keywords
Readme
Determinator
This is a JavaScript port of the Ruby determinator library.
⚠️ This version is in an extremely early stage (I'm learning how to write NPM modules) and though it makes use of determiantor's standard tests to ensure it functions correctly, the API is likely to change a lot as this gets worked on.
Usage
const d = require('determinator');
const retrieval = new d.FileRetrieval('path/to/features/');
const determinator = new d.Determinator(retrieval);
const outcome = determinator.Determinate(
'my_experiment_name',
'user id',
'anonymous user id',
{
employee: true
}
)