abn

0.0.1 • Public • Published

Expressjs middleware for testing multiple route handlers (think A/B testing). Middleware will round-robin each route handler for a given test, setting a cookie for each new request in order to match the user to the same handler on subsequent requests.

Installation

$ npm install abn

Usage

var app = require('express')(),
    ab = require('abn');
 
//Cookies middlware is required for routes using abn middleware
app.use(require('cookies').express());
 
var homeAB = ab.test('home');
 
app.get('/', homeAB(), function (req, res) {
    res.end('home');
});
 
app.get('/', homeAB(), function (req, res) {
    res.end('home two!');
});
 
app.get('/', homeAB(), function (req, res) {
    res.end('home three!!!');
});
 
app.listen(3000);

Given the above, the first new user will be returned 'home', the next new user will be returned 'home two!', and the third 'home three!!!'. These users will continue to receive the same response on subsequent requests.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    15
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    15

Package Sidebar

Install

npm i abn

Weekly Downloads

15

Version

0.0.1

License

ISC

Last publish

Collaborators

  • noumansaleem