Socket
Socket
Sign inDemoInstall

choose-variation

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    choose-variation

Javascript library for AB test bucketing. Lightweight, framework agnostic, no dependencies.


Version published
Maintainers
1
Install size
10.8 kB
Created

Readme

Source

Choose Variation

Javascript library for AB test bucketing. Lightweight, framework agnostic, no dependencies.

Installation

NPM: npm install --save choose-variation

Yarn: yarn add choose-variation

Usage

Basic Usage:

import { chooseVariation } from 'choose-variation';

const userId = '12345';
const testId = 'my-test';

const variation = chooseVariation(userId, testId);

if(variation === 0) {
  console.log('A Case');
}
else if(variation === 1) {
  console.log('B Case');
}

Uneven Weights:

// 80% get version A, 20% get version B
const variation = chooseVariation(userId, testId, [0.8, 0.2]);

More than 2 Variations:

// 3-way test
const variation = chooseVariation(userId, testId, [0.34, 0.33, 0.33]);

if(variation === 0) {
  console.log('A Case');
}
else if(variation === 1) {
  console.log('B Case');
}
else if(variation === 2) {
  console.log('C Case');
}

Sampling:

// 10% get version A, 10% get version B, the remaining 80% are excluded from the test
const variation = chooseVariation(userId, testId, [0.1,0.1]);

if(variation === -1) {
  console.log('Excluded from test');
}

FAQs

Last updated on 06 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc