A / B testing with Meteor

What is a simple recipe for testing A / B using Meteor?

In other words, in a Meteor environment, if I want to track 2-5 versions of each presentation template without loss, is there a package or actual setting that is designed for this?

+6
source share
3 answers

if you use Google Analytics and content experiments, you can use this: https://github.com/reywood/meteor-iron-router-ga/

or implement the client side content experiments yourself.

+2
source

The only A / B test package available in Atmosphere is manuel: abtest , which has not received any updates since January 2015 and either works very well or has not been used much (it does not have any functionality issues raised by the community).

+2
source

This is one of the solutions that I thought was quite interesting: https://github.com/krzysu/meteor-ab-test

This is written in coffeescript, but the main idea is that there is an ABTests pen helper that controls how templates are disabled and how results are measured.

-1
source

Source: https://habr.com/ru/post/955998/


All Articles