0.0.5 • Published 11 years ago

ewe v0.0.5

Weekly downloads
1
License
BSD
Repository
github
Last release
11 years ago

ewe.js (yo͞o)

a/b testing for the front-end

Example

var ewe = require("ewe");


//pick the ab test service
ewe.use({
  optimizely: {
    //credentials
  }
});




//create a new AB test case
launchpadTest = ewe.group(accountId).
  test("launchpad").
  control("show hud", showHudV1).
  variant("show hud 2", showHudV2).
  variant("show hud 3", { weight: 3}, showHudV3);


variation = launchpadTest.start().call();


function showHudV1() {
  launchpadTest.complete();
  console.log("ab test 1");
}

function showHudV2() {
  launchpadTest.complete();
  console.log("ab test 2");
}

function showHudV3() {
  
}

API

.use(options)

service to use

group .group(uniqueId)

test group.test(name)

creates a new test case, or returns a given test if it's registered.

  • name - name of the st

test.control(name, value)

the control test

test.variant(name , options, value)

the test variation

  • options - (optional) the options for the variant
    • weight - weight of the variation

value test.select(variationName)

selects a variation, and returns the given value.

value test.control()

returns the control test

variationName - (optional) the variation to select

test.start

called after the test has failed

test.complete(error, success)

called after error / success

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago