pushtell / react-ab-test

A/B testing React components and debug tools. Isomorphic with a simple, universal interface. Well documented and lightweight. Tested in popular browsers and Node.js. Includes helpers for Mixpanel and Segment.com.
MIT License
752 stars 112 forks source link

Question: Related libraries #52

Closed peterlazzarino closed 2 years ago

peterlazzarino commented 6 years ago

A year or so back I created an a/b test library in react that instead of deciding on variants and storing it and managing the state of the test, relies on and receives data about which segment to show from an external source. I have used this library for a/b testing with Evergage and VWO. I wanted to see if you could list it under alternatives or maybe is this something that does/should exist in react-ab-test?

https://github.com/peterlazzarino/react-controlled-ab

I decoupled the data fetching / platform dependency into separate libs that the ab test component hooks into

https://github.com/peterlazzarino/evergage-datalayer https://github.com/peterlazzarino/vwo-ab-datalayer

Thanks!