0

I would like to know wasabi (https://github.com/intuit/wasabi) and planout (https://facebook.github.io/planout/docs/why-planout.html ) ab testing open source components are javascript based or reactjs based. I have not found anywhere about this. Since I am planning to integrate, test this program, i would like to know about what level of support these libs bringing in.

If anyone aware about these libs are reactJS or JS based, please update.

Stella
  • 1,728
  • 5
  • 41
  • 95

2 Answers2

0

Judging from the lack of responses, the support for both is all but gone, if it ever existed. Both of these open source frameworks are server-side. Planout is PHP, though I've heard claims that it's been ported to other languages. Wasabi is Java.

Igor Urisman
  • 717
  • 1
  • 6
  • 22
0

Planout has "production ready ports" for PHP, Java and Javascript (source). If support is important to you, it's worth noting that the Planout repo hasn't been updated since Dec 2016 (source).

Wasabi is an API-driven testing framework, meaning you can use it from any language (source). The downside of an API approach is the latency it adds for each experiment decision.

If you're looking for a server-side JS or REACT SDK for testing, you could consider Optimizely. Using SDKs mean the decision can take place in memory (no latency) using a deterministic hashing algorithm. The SDKs are open source on Optimizely's github.

Disclaimer: I work for Optimizely.