使用 Meteor 进行 A/B 测试的简单方法是什么?
换句话说,在 Meteor 环境中,如果我想跟踪每个视图模板的 2-5 个版本而不会丢失,是否有为此目的的包或事实上的设置?
使用 Meteor 进行 A/B 测试的简单方法是什么?
换句话说,在 Meteor 环境中,如果我想跟踪每个视图模板的 2-5 个版本而不会丢失,是否有为此目的的包或事实上的设置?
如果你正在使用谷歌分析和内容实验,你可以使用这个: https ://github.com/reywood/meteor-iron-router-ga/
或自己实现客户端内容实验代码。
Atmosphere 上唯一可用的 A/B 测试包是manuel:abtest,它自 2015 年 1 月以来没有收到任何更新,要么运行良好,要么没有被太多使用(它没有社区提出的功能问题)。
This is one solution I thought looked pretty interesting: https://github.com/krzysu/meteor-ab-test
It's written in coffeescript, but the basic idea is that there is a ABTests handlebars helper that manages switching out the templates and measuring results.