Client-side multivariate testing.


License
MIT
Install
npm install variate@2.4.0

Documentation

Variate Build Status

Client-side multivariate testing.

Install

npm install variate

Usage

Variate uses the industry factory pattern:

import variate from "variate"

variate({
  cookie: {
    expires: 10 * 365,
    path:    "/",
    domain:  "site.com",
    secure:  true
  },
  tests: {
    banner: [ "short", "tall" ]
  },
  callback: ({ name, test, variant, converted }) => {
    // name - "banner"
    // test - [ "short", "tall" ]
    // variant - "short" or "tall"
    // converted - true or false
  }
})

// returns "short" or "tall"
//
variate().test({ name: "banner" })

// record conversion
//
variate().convert({ name: "banner" })